mirror of
https://github.com/Readarr/Readarr
synced 2026-01-17 04:53:26 +01:00
33 lines
546 B
Text
33 lines
546 B
Text
@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(@btnBackground, @btnBackgroundHighlight);
|
|
color: #333333;
|
|
}
|
|
|
|
.btn:hover {
|
|
color: #333333;
|
|
}
|
|
|
|
input:first-of-type:checked ~ .btn {
|
|
.buttonBackground(@btnPrimaryBackground, @btnPrimaryBackgroundHighlight);
|
|
}
|
|
}
|
|
}
|