mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
29 lines
494 B
Plaintext
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);
|
|
}
|
|
}
|
|
}
|