aboutsummaryrefslogtreecommitdiff
path: root/themes/Mint-X-Aqua/gtk-3.0/gtk-widgets-backgrounds.css
blob: 19b2dbd2f184e516141cd27b9841e85594945f76 (plain) (blame)
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
/**********
 * button *
 **********/

button,
button.flat:hover,
/*GtkComboBox .button,*/
headerbar button.titlebutton.appmenu:hover,
toolbar.inline-toolbar toolbutton > button.flat,
.inline-toolbar toolbutton > button,
.inline-toolbar toolbutton > button.flat,
.mate-panel-menu-bar button:hover {
    background-color: transparent;
    background-image: linear-gradient(to bottom,
                            @button_bg_a,
                            @button_bg_b);
}

button.flat,
button.flat:disabled,
button.sidebar-button,
button.sidebar-button:disabled,
headerbar button.titlebutton,
headerbar button.titlebutton:hover,
headerbar button.titlebutton:active,
headerbar button.titlebutton:checked,
.header-bar.titlebar GtkMenuButton.button.titlebutton,
.mate-panel-menu-bar button {
    background-color: transparent;
    background-image: none;
}

.primary-toolbar .raised button,
.primary-toolbar button.raised {
    background-color: transparent;
    background-image: linear-gradient(to bottom,
                            @button_raised_bg_a,
                            @button_raised_bg_b);
}

.primary-toolbar .raised button:hover,
.primary-toolbar button.raised:hover {
    background-color: transparent;
    background-image: linear-gradient(to bottom,
                            @button_hover_raised_bg_a,
                            @button_hover_raised_bg_b);
}

button:hover {
    background-color: transparent;
    background-image: linear-gradient(to bottom,
                            @button_hover_bg_a,
                            @button_hover_bg_b);
}

button:active,
button:checked,
headerbar button.titlebutton.appmenu:active,
headerbar button.titlebutton.appmenu:checked,
.primary-toolbar .raised button:active,
.primary-toolbar .raised button:checked,
.primary-toolbar button.raised:active,
.primary-toolbar button.raised:checked {
    background-color: transparent;
    background-image: linear-gradient(to bottom,
                            @button_active_bg_a,
                            @button_active_bg_b 30%,
                            @button_active_bg_c);
}

button:active:hover,
button:checked:hover,
headerbar button.titlebutton.appmenu:active:hover,
headerbar button.titlebutton.appmenu:checked:hover,
.primary-toolbar .raised button:active:hover,
.primary-toolbar .raised button:checked:hover,
.primary-toolbar button.raised:active:hover,
.primary-toolbar button.raised:checked:hover {
    background-color: transparent;
    background-image: linear-gradient(to bottom,
                            @button_active_hover_bg_a,
                            @button_active_hover_bg_b 30%,
                            @button_active_hover_bg_c);
}

button:disabled,
.primary-toolbar .raised button:disabled,
.primary-toolbar button.raised:disabled {
    background-color: transparent;
    background-image: linear-gradient(to bottom,
                            @button_insensitive_bg_a,
                            @button_insensitive_bg_b);
}

button:disabled:active,
button:disabled:checked {
    background-color: transparent;
    background-image: linear-gradient(to bottom,
                            @button_insensitive_active_bg_a,
                            @button_insensitive_active_bg_b);
}

/*****************
 * column-header *
 *****************/

treeview.view header button {
    background-color: transparent;
    background-image: linear-gradient(to bottom,
                            @column_header_bg_a,
                            @column_header_bg_b 50%,
                            @column_header_bg_c);
}

/*********
 * entry *
 *********/

entry {
    background-color: @theme_base_color;
    background-image: linear-gradient(to bottom,
                            @entry_bg_a,
                            @entry_bg_b);
}

entry:disabled {
    background-color: @theme_bg_color;
    background-image: none;
}

/**********
 * switch *
 **********/

switch {
    background-color: transparent;
    background-image: linear-gradient(to bottom,
                            @button_active_bg_a,
                            @button_active_bg_b 30%,
                            @button_active_bg_c);
}

switch:checked {
    background-color: transparent;
    background-image: linear-gradient(to bottom,
                            shade(@theme_selected_bg_color, 0.85),
                            shade(@theme_selected_bg_color, 1.05));
}

switch:disabled {
    background-color: @theme_bg_color;
    background-image: none;
}

switch slider {
    background-color: transparent;
    background-image: linear-gradient(to bottom,
                                    @button_bg_a,
                                    @button_bg_b);
}

switch slider:disabled {
    background-color: transparent;
    background-image: linear-gradient(to bottom,
                            @button_insensitive_bg_a,
                            @button_insensitive_bg_b);
}

/***********
 * toolbar *
 ***********/

.primary-toolbar,
.primary-toolbar.toolbar,
headerbar {
    background-color: transparent;
    background-image: linear-gradient(to bottom,
                            @toolbar_bg_a,
                            @toolbar_bg_b);
}

toolbar.inline-toolbar {
    background-color: transparent;
    background-image: linear-gradient(to bottom,
                            @inline_toolbar_bg_a,
                            @inline_toolbar_bg_b);
}