8b3b1b09af
Added box-shadow for toggle handle
21 lines
448 B
CSS
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;
|
|
} |