]> Pileus Git - ~andy/gtk/blob - tests/reftests/border-style.css
reftests: Add a rendering test for sibling matching
[~andy/gtk] / tests / reftests / border-style.css
1 @import url("reset-to-defaults.css");
2
3 GtkButton {
4   background-color: red;
5   border-color: green;
6   border-width: 1px;
7 }
8
9 .button-top-left {
10   border-style: solid none none solid;
11 }
12
13 .button-top-right {
14   border-style: solid solid none none;
15 }
16
17 .button-bottom-left {
18   border-style: none none solid solid;
19 }
20
21 .button-bottom-right {
22   border-style: none solid solid none;
23 }
24
25 .button-border {
26   border-style: solid;
27 }