mirror of
https://github.com/Lidarr/Lidarr
synced 2025-12-28 19:22:56 +01:00
20 lines
353 B
CSS
20 lines
353 B
CSS
.button {
|
|
composes: link from 'Components/Link/Link.css';
|
|
|
|
margin: 0 2px;
|
|
width: 22px;
|
|
border-radius: 4px;
|
|
background-color: transparent;
|
|
text-align: center;
|
|
font-size: inherit;
|
|
|
|
&:hover {
|
|
border: none;
|
|
background-color: inherit;
|
|
color: $iconButtonHoverColor;
|
|
}
|
|
|
|
&.isDisabled {
|
|
color: $iconButtonDisabledColor;
|
|
}
|
|
}
|