[libadwaita/wip/exalm/active: 3/5] stylesheet: Fix GtkDropdown active style on touch




commit 732dafd537081bdc534b200dc8c8aaca369bd101
Author: Alexander Mikhaylenko <alexm gnome org>
Date:   Tue May 24 13:36:48 2022 +0400

    stylesheet: Fix GtkDropdown active style on touch
    
    The inline listview row was getting an active style as well and we were
    only removing it for hover.

 src/stylesheet/widgets/_dropdowns.scss | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/stylesheet/widgets/_dropdowns.scss b/src/stylesheet/widgets/_dropdowns.scss
index 7d7df3de..43be53db 100644
--- a/src/stylesheet/widgets/_dropdowns.scss
+++ b/src/stylesheet/widgets/_dropdowns.scss
@@ -3,8 +3,8 @@ dropdown > popover.menu > contents { padding: 0; }
 dropdown > button > box {
   border-spacing: 6px;
 
-  > stack > row.activatable:hover {
-    background: none;
+  > stack > row.activatable {
+    &:hover, &:active { background: none; }
   }
 }
 


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