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
|
style "sidepane"
{
GtkTreeView::vertical-separator = 4
base[NORMAL] = mix (0.1, shade (1.35,@selected_bg_color), shade (0.9,@base_color))
base[INSENSITIVE] = mix (0.4, shade (1.35,@selected_bg_color), shade (0.9,@base_color))
text[NORMAL] = mix (0.7, @text_color, @base_color)
text[ACTIVE] = mix (0.7, @text_color, @base_color)
text[SELECTED] = mix (0.7, @text_color, @base_color)
engine "pixmap" {
image {
function = FLAT_BOX
state = SELECTED
recolorable = TRUE
file = "thunar/sidebar_active.png"
border = { 0, 0, 0, 0 }
stretch = TRUE
}
image {
function = FOCUS
recolorable = TRUE
file = "thunar/sidebar_active.png"
border = { 0, 0, 0, 0 }
stretch = TRUE
}
}
}
style "breadcrumbs"
{
xthickness = 9
ythickness = 4
ThunarLocationButtons::spacing = 0
engine "pixmap" {
image {
function = BOX
state = PRELIGHT
recolorable = TRUE
file = "thunar/breadcrumb_prelight.png"
border = { 4, 10, 0, 0 }
stretch = TRUE
}
image {
function = BOX
state = ACTIVE
file = "thunar/breadcrumb_active.png"
border = { 4, 10, 0, 0 }
stretch = TRUE
}
image {
function = BOX
state = INSENSITIVE
file = ""
border = { 0, 10, 0, 0 }
stretch = TRUE
}
image {
function = BOX
file = "thunar/breadcrumb_default.png"
border = { 4, 10, 0, 10 }
stretch = TRUE
}
}
}
widget_class "*ThunarLocationButtons*" style "breadcrumbs"
widget_class "*ThunarShortcutsView*" style "sidepane"
widget_class "*ThunarTreeView*" style "sidepane"
widget_class "*ThunarLocationEntry*" style "entry"
widget_class "*ThunarStatusbar*" style "resize-grip"
# Gtk2 Open-File Dialog
widget_class "*GtkFileChooserWidget.GtkFileChooserDefault.GtkVBox.GtkHPaned.GtkVBox.GtkScrolledWindow.GtkTreeView*" style "sidepane"
widget_class "*GtkFileChooserWidget.GtkFileChooserDefault.GtkVBox.GtkHPaned.GtkVBox.GtkScrolledWindow.<GtkTreeView>.<GtkButton>" style "treeview-header"
|