blob: 21d1783ae830c50570d04d602e2e406796884e9e (
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
|
/*gtk-button-images=0*/
/*
* bg[state] = color Sets the color used for the background of most widgets.
* fg[state] = color Sets the color used for the foreground of most widgets.
* base[state] = color Sets the color used for the background of widgets displaying editable text. This color is used for the background of, among others, GtkText, GtkEntry, GtkList, and GtkCList.
* text[state] = color Sets the color used for foreground of widgets using base for the background color.
*/
#Steps * {
/* base[NORMAL] = { 0.28, 0.38, 0.66 }; */
color: #FFFFFF;
}
#Step-categories {
color: #32A9DD;
}
#Banner * {
color: #5A8AD6;
}
#background {
background: #FFFFFF;
}
#Left_background {
background-color: #2859B5;
color: #FFD200;
}
GtkPaned.wide {
-GtkPaned-handle-size: 5;
margin: 0; }
GtkPaned.wide .pane-separator {
border-style: none solid;
border-color: #a1a1a1;
border-width: 1px; }
GtkPaned.wide .pane-separator:backdrop {
border-color: #a8a8a8; }
|