blob: 4bd3f366b972150a7dfd46b63c83c3491804aabf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* testgtk2.css sets all the buttons in the main window to blue by default */
@import url("testgtk2.css");
* {
font-family: Sans;
font-size: 12px;
}
label:selected {
background-color: gray;
}
label:hover {
background-color: mix (#a0a0a0, rgb (75%, 200, 0%), 0.9);
}
/* override testgtk2, introduce the green color in the button list */
#main_window scrolledwindow button:hover {
background-color: rgb (0%, 75%, 0);
}
|