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 Manuel Quiñones <manuq@laptop.org>2013-02-15 14:56:23 (GMT)
commit2ff0e6e09883b178d9ed28fcb56e13afe62fc66d (patch)
tree48a664968c16ba3251ec3fc8afe877d129b98d1b
parent2ffabcbbc1181570bb6b4d263c7ab60bc8f241e1 (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>
-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 d0ab86a..26a8a30 100644
--- a/gtk3/theme/gtk-widgets.css.em
+++ b/gtk3/theme/gtk-widgets.css.em
@@ -309,9 +309,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 */