]> Pileus Git - ~andy/gtk/blob - tests/reftests/background-position.css
reftests: Add reftest for separator fixes
[~andy/gtk] / tests / reftests / background-position.css
1 @import "reset-to-defaults.css";
2
3 .button {
4   background-image: url("green-20x20.png");
5   background-repeat: no-repeat;
6   background-color: red;
7 }
8
9 .button#ref {
10   background-image: none;
11   background-color: lime;
12 }
13
14 GtkWindow#ref {
15   background-color: red;
16 }
17
18 #a {
19   background-position: 50% 50%;
20 }
21
22 #b {
23   background-position: 0% 50%;
24 }
25
26 #c {
27   background-position: 0% 100%;
28 }
29
30 #d {
31   background-position: bottom right;
32 }
33
34 #e {
35   background-position: right top;
36 }
37
38 #f {
39   background-position: right;
40 }
41
42 #g {
43   background-position: 10px 10px;
44 }
45
46 #h {
47   background-position: -10px 10px;
48 }
49
50 #i {
51   background-position: 20px 20px;
52 }