Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManuel QuiƱones <manuq@laptop.org>2013-02-06 04:58:29 (GMT)
committer Ajay Garg <ajay@activitycentral.com>2013-02-16 05:07:54 (GMT)
commit2d296cdb8667a862d7733d15891249b8e3223d33 (patch)
tree6a39fa8a109fc34c0ae6bfd4e5dfb0fa4cf1f0ca
parent5f6602ee0c478f99c666356d4a2d1fe0392896e0 (diff)
ComboBox: add scroll indicators - 3942
- set the correct size for arrows in the dropdown menu - remove border and background in the button that contains the arrows - remove rule that was trying to make separators transparent but is not working Signed-off-by: Manuel QuiƱones <manuq@laptop.org> Signed-off-by: Ajay Garg <ajay@activitycentral.com>
-rw-r--r--gtk3/theme/gtk-widgets.css.em14
1 files changed, 11 insertions, 3 deletions
diff --git a/gtk3/theme/gtk-widgets.css.em b/gtk3/theme/gtk-widgets.css.em
index df98625..0b8fd56 100644
--- a/gtk3/theme/gtk-widgets.css.em
+++ b/gtk3/theme/gtk-widgets.css.em
@@ -314,9 +314,17 @@ GtkComboBox {
color: @white;
}
-GtkComboBox .separator {
- /* Remove the separator turning it transparent */
- color: alpha(@theme_base_color, 0.0);
+GtkComboBox .menu.button {
+ border-color: transparent;
+ border-radius: 0px;
+ border-style: none;
+ background-color: transparent;
+ color: @white;
+}
+
+GtkComboBox .menu {
+ -GtkWidget-scroll-arrow-hlength: $(my_floor(2.5 * subcell_size));
+ -GtkWidget-scroll-arrow-vlength: $(my_floor(2.5 * subcell_size));
}
/* Notebooks */