8b3b1b09af
Added box-shadow for toggle handle
22 lines
372 B
CSS
22 lines
372 B
CSS
.check-box StBoxLayout {
|
|
spacing: .8em;
|
|
}
|
|
|
|
.check-box StBin {
|
|
width: 24px;
|
|
height: 24px;
|
|
background-image: url("checkbox-off.svg");
|
|
}
|
|
|
|
.check-box:focus StBin {
|
|
background-image: url("checkbox-off-focused.svg");
|
|
}
|
|
|
|
.check-box:checked StBin {
|
|
background-image: url("checkbox.svg");
|
|
}
|
|
|
|
.check-box:focus:checked StBin {
|
|
background-image: url("checkbox-focused.svg");
|
|
}
|