mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-19 21:46:50 -04:00
40a15d59e0
Fixes #7553
35 lines
558 B
CSS
35 lines
558 B
CSS
.toolbarButton {
|
|
composes: link from '~Components/Link/Link.css';
|
|
|
|
padding-top: 4px;
|
|
min-width: $toolbarButtonWidth;
|
|
width: min-content;
|
|
text-align: center;
|
|
|
|
&:hover {
|
|
color: $toobarButtonHoverColor;
|
|
}
|
|
|
|
&.isDisabled {
|
|
color: $disabledColor;
|
|
}
|
|
}
|
|
|
|
.isDisabled {
|
|
color: $disabledColor;
|
|
}
|
|
|
|
.labelContainer {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 24px;
|
|
}
|
|
|
|
.label {
|
|
padding: 0 3px;
|
|
color: $toolbarLabelColor;
|
|
font-size: $extraSmallFontSize;
|
|
line-height: calc($extraSmallFontSize + 1px);
|
|
}
|