mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-20 21:54:58 -04:00
2291f3e00e
Co-Authored-By: Zak Saunders <thezak48@users.noreply.github.com>
34 lines
556 B
CSS
34 lines
556 B
CSS
.toolbarButton {
|
|
composes: link from '~Components/Link/Link.css';
|
|
|
|
padding-top: 4px;
|
|
width: $toolbarButtonWidth;
|
|
text-align: center;
|
|
|
|
&:hover {
|
|
color: var(--toobarButtonHoverColor);
|
|
}
|
|
|
|
&.isDisabled {
|
|
color: var(--disabledColor);
|
|
}
|
|
}
|
|
|
|
.isDisabled {
|
|
color: var(--disabledColor);
|
|
}
|
|
|
|
.labelContainer {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 24px;
|
|
}
|
|
|
|
.label {
|
|
padding: 0 3px;
|
|
color: var(--toolbarLabelColor);
|
|
font-size: $extraSmallFontSize;
|
|
line-height: calc($extraSmallFontSize + 1px);
|
|
}
|