mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
* button background hover updates * add buttonlink underline * update button base disabled * fix size auto * Update ui/components/component-library/button-link/button-link.stories.js Co-authored-by: George Marshall <george.marshall@consensys.net> * remove underline --------- Co-authored-by: George Marshall <george.marshall@consensys.net>
42 lines
678 B
SCSS
42 lines
678 B
SCSS
|
|
.mm-button-link {
|
|
&:active {
|
|
color: var(--color-primary-alternative);
|
|
}
|
|
|
|
&--disabled {
|
|
&:active {
|
|
color: var(--color-primary-default);
|
|
}
|
|
}
|
|
|
|
&--type-danger {
|
|
&:hover {
|
|
color: var(--color-error-default);
|
|
}
|
|
|
|
&:active {
|
|
color: var(--color-error-alternative);
|
|
}
|
|
}
|
|
|
|
&--type-danger#{&}--disabled:active {
|
|
color: var(--color-error-default);
|
|
}
|
|
|
|
&--size-auto {
|
|
height: auto;
|
|
}
|
|
|
|
&--size-inherit {
|
|
height: auto;
|
|
background-color: transparent;
|
|
vertical-align: top;
|
|
font-family: inherit;
|
|
font-weight: inherit;
|
|
font-size: inherit;
|
|
line-height: inherit;
|
|
letter-spacing: inherit;
|
|
}
|
|
}
|