aboutsummaryrefslogtreecommitdiff
path: root/.themes/FlatColor/gtk-3.20/widgets/combobox.css
diff options
context:
space:
mode:
authorschererleander <leander@leander-scherer.de>2024-03-11 17:12:20 +0100
committerschererleander <leander@leander-scherer.de>2024-03-11 17:12:20 +0100
commitb77a7d585cf6cf2420dd770e42ba5b1e08a4e12c (patch)
tree1e609feaf2356f80ea95cc0f61fc2ecddc875f6b /.themes/FlatColor/gtk-3.20/widgets/combobox.css
parentbe73020a8d6d0beefdedf6f2c2c1ffa3cc8a82b6 (diff)
initial commit
Diffstat (limited to '.themes/FlatColor/gtk-3.20/widgets/combobox.css')
-rw-r--r--.themes/FlatColor/gtk-3.20/widgets/combobox.css47
1 files changed, 47 insertions, 0 deletions
diff --git a/.themes/FlatColor/gtk-3.20/widgets/combobox.css b/.themes/FlatColor/gtk-3.20/widgets/combobox.css
new file mode 100644
index 0000000..2df153a
--- /dev/null
+++ b/.themes/FlatColor/gtk-3.20/widgets/combobox.css
@@ -0,0 +1,47 @@
+/**************
+ * ComboBoxes *
+ **************/
+combobox arrow {
+ -gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
+ min-height: 16px;
+ min-width: 16px;
+}
+
+combobox menu,
+combobox .menu {
+ padding: 2px 0;
+}
+
+combobox menu menuitem,
+combobox .menu menuitem {
+ min-height: 28px;
+ padding: 0 10px;
+}
+
+combobox menu menuitem:hover {
+ background-color: @selected_bg_color;
+}
+
+combobox:drop(active) {
+ box-shadow: none;
+}
+
+.linked:not(.vertical) > combobox:first-child > box > button.combo {
+ border-radius: 3px 0 0 3px;
+ margin-right: 1px;
+}
+
+.linked:not(.vertical) > combobox:last-child > box > button.combo {
+ border-radius: 0 3px 3px 0;
+ margin-left: 1px;
+}
+
+.linked:not(.vertical) > combobox:not(:first-child):not(:last-child) > box > button.combo {
+ border-radius: 0;
+ margin-left: 1px;
+ margin-right: 1px;
+}
+
+.linked:not(.vertical) > combobox > box > button.combo {
+ border-radius: 0;
+} \ No newline at end of file