summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdel Gadllah <adel.gadllah@gmail.com>2015-09-24 20:05:09 +0200
committerAdel Gadllah <adel.gadllah@gmail.com>2015-09-25 20:11:02 +0200
commit01253d8545395de215c200cfe1be1b4667b9fa0b (patch)
tree5eaa039b7e2c3159f4bf42188033fea98c25c873
parent034d0b775b12f2212ba2028b153e4c2f31e6fa65 (diff)
downloadgnome-shell-sass-01253d8545395de215c200cfe1be1b4667b9fa0b.tar.gz
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
-rw-r--r--_common.scss3
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; }
}