[gnome-shell-sass] theme/switcher-popup: Increase contrast of switcher items



commit 807de0d210d67a5cc162b15a2809cdc124577e61
Author: Jonas Dreßler <verdre v0yd nl>
Date:   Thu Mar 26 22:12:39 2020 +0100

    theme/switcher-popup: Increase contrast of switcher items
    
    Use a brighter color and increase the contrast of the selected/active
    items in the switcher popup.
    
    Since a bright color doesn't go well with a box-shadow, remove that
    shadow, an effect like should only be used for elements clicked with a
    mouse anyway.
    
    https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1135

 widgets/_switcher-popup.scss | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)
---
diff --git a/widgets/_switcher-popup.scss b/widgets/_switcher-popup.scss
index 2524958..32cbbe5 100644
--- a/widgets/_switcher-popup.scss
+++ b/widgets/_switcher-popup.scss
@@ -15,13 +15,11 @@
     border: 1px solid transparent;
 
     &:outlined {
-      border: 1px solid darken($borders_color,5%);
-      background-color: transparentize($osd_fg_color, 0.9);
-      box-shadow: inset 0 2px 2px 0 rgba(0,0,0,0.4);
+      background-color: transparentize($osd_fg_color, 0.7);
     }
 
     &:selected {
-      background-color: transparentize($osd_fg_color, 0.9);
+      background-color: transparentize($osd_fg_color, 0.7);
       color: $osd_fg_color;
     }
   }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]