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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
|
#
# Thunar
#
style "thunar-handle" { GtkPaned::handle-size = 2 }
style "dark-sidebar" {
GtkTreeView::odd_row_color = @dark_sidebar_bg
GtkTreeView::even_row_color = @dark_sidebar_bg
base[NORMAL] = @dark_sidebar_bg
base[INSENSITIVE] = @dark_sidebar_bg
text[NORMAL] = "#657b83"
text[ACTIVE] = @selected_fg_color
text[SELECTED] = @selected_fg_color
}
style "thunar-frame" {
xthickness = 0
ythickness = 0
}
widget_class "*ThunarWindow*.<GtkScrolledWindow>" style "thunar-frame"
widget_class "*ThunarShortcutsView*" style "dark-sidebar"
widget_class "*ThunarTreeView*" style "dark-sidebar"
widget_class "*ThunarWindow*.<GtkHPaned>" style "thunar-handle"
#
# Workaround for colored entries
#
style "entry_border" {
xthickness = 7
ythickness = 5
engine "pixmap" {
image {
function = SHADOW
state = NORMAL
detail = "entry"
file = "assets/entry-border-bg.png"
border = {6, 6, 6, 6}
stretch = TRUE
}
image {
function = SHADOW
state = ACTIVE
detail = "entry"
file = "assets/entry-border-active-bg.png"
border = {6, 6, 6, 6}
stretch = TRUE
}
image {
function = FLAT_BOX
state = ACTIVE
detail = "entry_bg"
file = "assets/null.png"
}
image {
function = FLAT_BOX
state = INSENSITIVE
detail = "entry_bg"
file = "assets/null.png"
}
image {
function = FLAT_BOX
detail = "entry_bg"
file = "assets/null.png"
}
}
}
style "combobox_entry_border" = "combobox_entry" {
engine "pixmap" {
image {
function = SHADOW
detail = "entry"
state = NORMAL
shadow = IN
file = "assets/combo-entry-border.png"
border = { 4, 4, 12, 12 }
stretch = TRUE
direction = LTR
}
image {
function = SHADOW
detail = "entry"
state = ACTIVE
file = "assets/combo-entry-border-focus.png"
border = { 4, 4, 12, 12 }
stretch = TRUE
direction = LTR
}
image {
function = SHADOW
detail = "entry"
state = NORMAL
shadow = IN
file = "assets/combo-entry-border-rtl.png"
border = { 4, 4, 12, 12 }
stretch = TRUE
direction = RTL
}
image {
function = SHADOW
detail = "entry"
state = ACTIVE
file = "assets/combo-entry-border-focus-rtl.png"
border = { 4, 4, 12, 12 }
stretch = TRUE
direction = RTL
}
image {
function = FLAT_BOX
state = INSENSITIVE
detail = "entry_bg"
file = "assets/null.png"
}
image {
function = FLAT_BOX
detail = "entry_bg"
file = "assets/null.png"
}
}
}
# Mousepad search entry
widget_class "*MousepadSearchBar*.<GtkEntry>" style "entry_border"
# Mousepad find and replace
widget_class "*MousepadReplaceDialog*.<GtkEntry>" style "entry_border"
# Thunar bulk rename
widget_class "*ThunarRenamerDialog*.<GtkEntry>" style "entry_border"
# Hexchat input box
class "SexySpellEntry" style:highest "entry_border"
# Geany search entries
widget "*GeanyToolbar.*geany-search-entry-no-match*" style "entry_border"
widget "*GeanyToolbar.*GtkEntry*" style "entry_border"
widget "GeanyDialogSearch.*GtkComboBoxEntry*.*geany-search-entry-no-match*" style "combobox_entry_border"
|