-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgtk-arrows.css
88 lines (61 loc) · 1.93 KB
/
gtk-arrows.css
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/* Theme arrows for menus, comboboxes and other widgets */
arrow {
color: alpha(currentColor, 0.75);
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
min-height: 17px;
min-width: 17px; }
/* Expander arrows */
expander arrow {
min-width: 16px;
min-height: 16px;
-gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); }
expander arrow:dir(rtl) {
-gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); }
expander arrow:hover {
color: @theme_selected_bg_color; }
expander arrow:checked {
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
/* Combobox arrows */
/* Make arrows transparent as the arrows are currently
imbedded in the button image to allow LibreOffice
to display dropdown box arrows. */
combobox arrow, combobox arrow:disabled {
color: transparent;
margin-right: -4px;
/* background-image: url("assets/arrow_down.png");*/
background-position: center;
min-height: 10px;
min-width: 10px; }
combobox arrow:disabled {
color: transparent;
background-position: center;
min-height: 10px;
min-width: 10px; }
/* Spin button arrows */
spinbutton.horizontal > button.down {
color: transparent;
background-image: url("assets/arrow_down.png");
background-position: center;
min-height: 14px;
min-width: 14px;
}
spinbutton.horizontal > button.up {
color: transparent;
background-image: url("assets/arrow_up.png");
background-position: center;
min-height: 14px;
min-width: 14px;
}
/* Menu arrows */
menu > arrow, .menu > arrow {
padding: 4px;
min-width: 16px;
min-height: 16px; }
menu > arrow.top, .menu > arrow.top {
-gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); }
menu > arrow.bottom, .menu > arrow.bottom {
margin-bottom: -6px;
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
menu menuitem arrow:dir(ltr), .menu menuitem arrow:dir(ltr) {
margin-left: 10px;
-gtk-icon-source: url("assets/arrow_right.png"); }