[download]
config/gtk-3.0/gtk.css
1 @import url("../../.theme/gtk");
2
3 vte-terminal {
4 padding: 2px;
5 }
6
7
8 color: @foreground;
9 background: @background;
10 }
11
12 menubar, headerbar {
13 font: 12px Terminus;
14 }
15
16 menubar window {
17 font: initial;
18 }
19
20 .caja-side-pane treeview {
21 font-weight: 500;
22 }
23
24 /* Panel {{{ */
25
26 .xfce4-panel {
27 color: @foreground;
28 background: alpha(@background, 0.97);
29 }
30
31 .xfce4-panel * {
32 font: 12px Terminus;
33 transition: none;
34 }
35
36 .xfce4-panel #systray-6 * {
37 background: @background;
38 }
39
40 .xfce4-panel button {
41 text-shadow: none;
42 color: @foreground;
43 background: none;
44 border: none;
45 border-radius: 0;
46 box-shadow: none;
47 -gtk-icon-shadow: none;
48 }
49
50 .xfce4-panel button:checked box,
51 .xfce4-panel grid button:checked {
52 color: @background;
53 background: @foreground;
54 }
55
56 /* }}} */
|