mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-08 01:38:11 +00:00
34 lines
570 B
Plaintext
34 lines
570 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 {
|
|
.button-variant(@btn-default-color, @btn-default-bg, @btn-default-border);
|
|
color: #333333;
|
|
}
|
|
|
|
.btn:hover {
|
|
color: #333333;
|
|
}
|
|
|
|
input:first-of-type:checked ~ .btn-primary {
|
|
.button-variant(@btn-primary-color, @btn-primary-bg, @btn-primary-border);
|
|
}
|
|
}
|
|
}
|