Gnome-Shell: lighten icon shadow

This commit is contained in:
Daniel Ruiz de Alegría 2022-03-10 18:35:46 +01:00
parent 1a2c2effbf
commit ce63319b99
No known key found for this signature in database
GPG Key ID: 59667A77E8BFCB6C
3 changed files with 11 additions and 0 deletions

View File

@ -2657,6 +2657,9 @@ StScrollBar {
#unlockDialogNotifications StButton#vhandle:active, #unlockDialogNotifications StButton#hhandle:active { #unlockDialogNotifications StButton#vhandle:active, #unlockDialogNotifications StButton#hhandle:active {
background-color: rgba(39, 119, 255, 0.5); } background-color: rgba(39, 119, 255, 0.5); }
.icon-dropshadow {
icon-shadow: 0 1px 5px rgba(0, 0, 0, 0.3); }
/* OSD */ /* OSD */
/* /*
$_osd_color: if($variant=='light', black, $fg_color); $_osd_color: if($variant=='light', black, $fg_color);

View File

@ -2653,6 +2653,9 @@ StScrollBar {
#unlockDialogNotifications StButton#vhandle:active, #unlockDialogNotifications StButton#hhandle:active { #unlockDialogNotifications StButton#vhandle:active, #unlockDialogNotifications StButton#hhandle:active {
background-color: rgba(39, 119, 255, 0.5); } background-color: rgba(39, 119, 255, 0.5); }
.icon-dropshadow {
icon-shadow: 0 1px 5px rgba(0, 0, 0, 0.1); }
/* OSD */ /* OSD */
/* /*
$_osd_color: if($variant=='light', black, $fg_color); $_osd_color: if($variant=='light', black, $fg_color);

View File

@ -1,6 +1,11 @@
$overview_transparent_bg: transparentize(white, .9); $overview_transparent_bg: transparentize(white, .9);
$dialog_box_shadow: 0 2px 8px 0 transparentize(black, .6); $dialog_box_shadow: 0 2px 8px 0 transparentize(black, .6);
// Dropshadow for large icons
.icon-dropshadow {
icon-shadow: 0 1px 5px $shadow_color;
}
/* OSD */ /* OSD */
/* /*
$_osd_color: if($variant=='light', black, $fg_color); $_osd_color: if($variant=='light', black, $fg_color);