[gtk/wip/jimmac/dropdown-styling: 5/5] Adwaita: dropdown styling



commit 380c40f932cae2c250936a03dcce0f47c401a5ff
Author: Jakub Steiner <jimmac gmail com>
Date:   Mon Jun 15 15:18:04 2020 +0200

    Adwaita: dropdown styling
    
    - selected item color
    - offset dropdown form the parent control
    
    FIXME: don't center below the parent control, but left align to it
    
    Fixes (eventually) https://gitlab.gnome.org/GNOME/gtk/-/issues/2846

 gtk/theme/Adwaita/_common.scss | 18 +++++++++++++++---
 1 file changed, 15 insertions(+), 3 deletions(-)
---
diff --git a/gtk/theme/Adwaita/_common.scss b/gtk/theme/Adwaita/_common.scss
index dca44ed351..1869eb73a4 100644
--- a/gtk/theme/Adwaita/_common.scss
+++ b/gtk/theme/Adwaita/_common.scss
@@ -1171,12 +1171,24 @@ combobox {
 
     button.combo { @extend %button_basic_drop_active; }
   }
-}
 
-dropdown > popover listview > row {
-  padding: 6px;
+  // newstyle
+  popover {
+   margin-top: 6px;
+
+   & > listview > row {
+    padding: 6px;
+
+    &:selected {
+        outline-color: $alt_focus_border_color;
+        color: $text-color;
+        background-color: $menu_selected_color;
+      }
+    }
+  }
 }
 
+
 // the combo is a composite widget so the way we do button linking doesn't
 // work, special case needed. See
 // https://bugzilla.gnome.org/show_bug.cgi?id=733979


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