blob: d679867fe8d67e468e790e0a01e643ae25f75257 (
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
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
|
##########################################
# CAJA
##########################################
gtk_color_scheme = "fg_color:#101010\nbg_color:#E9EFE7"
style "caja-handle"
{
GtkPaned::handle-size = 0
xthickness = 0
ythickness = 0
base[NORMAL] = @bg_color
}
style "caja-sidebar"
{
text[NORMAL] = @fg_color
base[NORMAL] = @bg_color
font_name = "Regular"
GtkTreeView::odd_row_color = @bg_color
GtkTreeView::even_row_color = @bg_color
# padding from the left edge
GtkTreeView::horizontal_separator = 15
xthickness = 0
ythickness = 0
}
style "caja-extra-view"
{
xthickness = 0
ythickness = 0
bg[NORMAL] = @bg_color
}
style "caja-view"
{
xthickness = 0
ythickness = 0
bg[NORMAL] = "#F1F7EF"
base[NORMAL] = "#F1F7EF"
}
style "caja-statusbar"
{
xthickness = 4
ythickness = 1
}
style "caja-window-base"
{
#bg[NORMAL] = @bg_color
}
style "caja-location" {
bg[NORMAL] = mix (0.60, shade (1.05, "#E9EFE7"), "#E9EFE7")
}
# CAJA
widget_class "*Caja*Window*" style "caja-window-base"
widget_class "*Caja*Places*Sidebar*" style "caja-sidebar"
widget_class "*Caja*View*" style "caja-view"
widget "*Caja*Splitter" style "caja-handle"
widget_class "*Caja*Statusbar*" style "caja-statusbar"
# For Elementay Caja
widget_class "*Caja*GtkToolbar*" style "murrine-togglebutton"
widget "*.caja-extra-view-widget" style : highest "caja-location"
|