Gnome-Shell: fix icon-shadow in dash

This commit is contained in:
Daniel Ruiz de Alegría 2022-04-20 19:55:17 +02:00
parent 7d6f1d12a0
commit 58a21e15e7
No known key found for this signature in database
GPG Key ID: 59667A77E8BFCB6C
3 changed files with 10 additions and 5 deletions

View File

@ -2918,7 +2918,8 @@ StScrollBar {
/* Dash */ /* Dash */
#dash { #dash {
color: white; color: white; }
#dash StIcon {
icon-shadow: 0 2px 6px rgba(0, 0, 0, 0.4); } icon-shadow: 0 2px 6px rgba(0, 0, 0, 0.4); }
.dash-background, .dash-separator { .dash-background, .dash-separator {

View File

@ -2914,7 +2914,8 @@ StScrollBar {
/* Dash */ /* Dash */
#dash { #dash {
color: white; color: white; }
#dash StIcon {
icon-shadow: 0 2px 6px rgba(0, 0, 0, 0.4); } icon-shadow: 0 2px 6px rgba(0, 0, 0, 0.4); }
.dash-background, .dash-separator { .dash-background, .dash-separator {

View File

@ -279,8 +279,11 @@ $dialog_box_shadow: 0 2px 6px -2px transparentize(black, .8);
/* Dash */ /* Dash */
#dash { #dash {
color: $osd_fg_color; color: $osd_fg_color;
StIcon {
icon-shadow: 0 2px 6px transparentize(black, .6); icon-shadow: 0 2px 6px transparentize(black, .6);
} }
}
.dash-background, .dash-separator { background: $overview_transparent_bg; } .dash-background, .dash-separator { background: $overview_transparent_bg; }