13 lines
409 B
SCSS
Raw Normal View History

2021-04-08 22:59:05 +08:00
#unlockDialogNotifications {
StButton#vhandle, StButton#hhandle {
background-color: transparentize($bg_color, 0.7);
&:hover, &:focus { background-color: transparentize($bg_color, 0.5); }
2024-10-30 18:05:53 +08:00
@if $gnome_version == 'old' {
&:active { background-color: transparentize($primary_color, 0.5); }
} @else {
&:active { background-color: st-transparentize($primary_color, 0.5); }
}
2021-04-08 22:59:05 +08:00
}
}