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
|
/***********
* infobar *
***********/
GtkInfoBar {
border-width: 0;
border-style: none;
}
.info {
border-width: 0;
border-style: none;
background-color: @info_bg_color;
background-image: none;
color: @info_fg_color;
}
.warning {
border-width: 0;
border-style: none;
background-color: @warning_bg_color;
background-image: none;
color: @warning_fg_color;
}
.question {
border-width: 0;
border-style: none;
background-color: @question_bg_color;
background-image: none;
color: @question_fg_color;
}
.error {
border-width: 0;
border-style: none;
background-color: @error_bg_color;
background-image: none;
color: @error_fg_color;
}
.warning .button,
.question .button,
.info .button,
.error .button,
.warning .button.close,
.question .button.close,
.info .button.close,
.error .button.close {
}
.warning .button:hover,
.question .button:hover,
.info .button:hover,
.error .button:hover,
.warning .button.close:hover,
.question .button.close:hover,
.info .button.close:hover,
.error .button.close:hover {
}
.warning .button:active,
.question .button:active,
.info .button:active,
.error .button:active,
.warning .button.close:active,
.question .button.close:active,
.info .button.close:active,
.error .button.close:active,
.warning .button:active:hover,
.question .button:active:hover,
.info .button:active:hover,
.error .button:active:hover,
.warning .button.close:active:hover,
.question .button.close:active:hover,
.info .button.close:active:hover,
.error .button.close:active:hover {
}
.warning .button:disabled,
.question .button:disabled,
.info .button:disabled,
.error .button:disabled {
}
.warning .button *:disabled,
.question .button *:disabled,
.info .button *:disabled,
.error .button *:disabled {
}
|