forked from gtk-rs/gtk3-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
28 lines (26 loc) · 671 Bytes
/
style.css
File metadata and controls
28 lines (26 loc) · 671 Bytes
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
#entry1 {
background-image: -gtk-gradient (linear,
0 0, 1 0,
color-stop(0, #f00),
color-stop(1, #0f0));
color: blue;
font-weight: bold;
}
button {
/* If we don't put it, the yellow background won't be visible */
background-image: none;
}
#label1:hover {
transition: 500ms;
color: red;
background-color: yellow;
}
combobox button.combo box {
padding: 5px;
}
combobox box arrow {
-gtk-icon-source: none;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-top: 5px solid black;
}