]> Pileus Git - ~andy/gtk/blob - tests/reftests/box-shadow-spec-inset.css
stylecontext: Do invalidation on first resize container
[~andy/gtk] / tests / reftests / box-shadow-spec-inset.css
1 GtkButton {
2   engine: none;
3   border-radius: 0;
4   background-image: none;
5   border-image: none;
6   border-style: none;
7   background-color: rgba(0, 0, 0, 0);
8   border-width: 0;
9 }
10
11 .row1, .row2, .row3 {
12   /*border:5px solid blue;*/
13   border-width: 5px;
14   border-style: solid;
15   border-color: blue;
16   background-color:orange;
17 }
18
19 .column1 {
20   /* border-radius: 20px */;
21 }
22
23 .column2 {
24   border-radius: 0;
25 }
26
27 .row2 {
28   box-shadow:
29     rgba(0,0,0,1)
30     15px 15px
31     inset
32 }
33
34 .row3 {
35   box-shadow:
36     rgba(0,0,0,1)
37     15px 15px 0
38     10px /*spread*/
39     inset
40 }
41
42 .reference-border {
43   border-width: 5px;
44   border-style: solid;
45   border-color: blue;
46 }
47
48 .reference-background {
49   background-color: orange;
50 }
51
52 .reference-shadow {
53   background-color: rgba(0,0,0,1);
54 }
55
56 /*
57 .reference-padding-radius {
58   border-radius: 15px
59 }
60
61 .reference-radii1 {
62   border-radius: 15px 0 10px;
63 }
64
65 .reference-radii2 {
66   border-radius: 5px 0 10px;
67 }
68 */