blob: 2df153adb8a2f5a620d76679cef6cf64f62c44fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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;
}
|