[gnome-shell-sass] aggregate-menu: Allow adjusting of the menu width



commit 01253d8545395de215c200cfe1be1b4667b9fa0b
Author: Adel Gadllah <adel gadllah gmail com>
Date:   Thu Sep 24 20:05:09 2015 +0200

    aggregate-menu: Allow adjusting of the menu width
    
    Currently the menu is too narrow for some translated texts causing them to be
    cut off.
    
    We do not want to allow an arbitary wide menu so as a compromise allow growing
    up to a maximum size that is considered acceptable.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=708472

 _common.scss |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/_common.scss b/_common.scss
index 87e8942..0b9fabe 100644
--- a/_common.scss
+++ b/_common.scss
@@ -943,7 +943,8 @@ StScrollBar {
   }
 
   .aggregate-menu {
-    width: 280px;
+    min-width: 280px;
+    max-width: 400px;
     .popup-menu-icon { padding: 0 4px; }
   }
 


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