Files
Vladyslav Hroshev 8b3b1b09af Fixed checkboxes in GNOME 47+
Added box-shadow for toggle handle
2025-07-04 21:16:50 +03:00

21 lines
448 B
CSS

.toggle-switch .handle {
/* toggle-switch height - handle margin * 2 */
width: 12px;
height: 14px;
margin: 3px;
border-radius: 99px;
background-color: TEXT-SECONDARY-COLOR;
box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
}
.toggle-switch:checked .handle {
background-color: BUTTON-TEXT-COLOR;
}
.dnd-button .toggle-switch .handle {
/* toggle-switch height - handle margin * 2 */
width: 16px;
height: 16px;
border-radius: 6px;
margin: 3px;
}