Files
Prowlarr-Prowlarr/src/UI/Content/checkbox-button.less
Mark McDowall 3db97e9d11 Moved SeasonFolderFormat to NamingConfig
Moved UseSeasonFolder to UI only (add series)
2013-11-21 23:45:37 -08:00

29 lines
494 B
Plaintext

@import "Bootstrap/variables";
@import "Bootstrap/mixins";
.checkbox-button div {
display: none;
}
@media only screen {
.checkbox-button {
input {
position: absolute;
opacity: 0;
z-index: 5;
}
div {
display: block;
}
.btn {
.buttonBackground(@btnDangerBackground, @btnDangerBackgroundHighlight);
}
input:first-of-type:checked ~ .btn {
.buttonBackground(@btnPrimaryBackground, @btnPrimaryBackgroundHighlight);
}
}
}