You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Sonarr/frontend/src/Components/Link/IconButton.css

22 lines
391 B

.button {
composes: link from '~Components/Link/Link.css';
display: inline-block;
margin: 0 2px;
width: 22px;
border-radius: 4px;
background-color: transparent;
text-align: center;
font-size: inherit;
&:hover {
border: none;
background-color: inherit;
color: var(--iconButtonHoverColor);
}
&.isDisabled {
color: var(--iconButtonDisabledColor);
}
}