]> Pileus Git - ~andy/gtk/blob - tests/reftests/border-image-gradient.css
Merge GdkFrameHistory into GdkFrameClock
[~andy/gtk] / tests / reftests / border-image-gradient.css
1 * {
2   engine: none;
3   border-image: none;
4   border-radius: 0;
5   border-style: solid;
6   border-color: transparent;
7   border-width: 0;
8 }
9
10 .button-image {
11   border-image-source: -gtk-gradient(linear,
12                                      left top, left bottom,
13                                      from(lime),
14                                      to(lime));
15   border-image-slice: 1;
16   border-image-repeat: stretch;
17   border-width: 1px 2px 2px 1px;
18 }
19
20 .button-not-image {
21   border-color: lime;
22   border-style: solid;
23   border-width: 1px 2px 2px 1px;
24 }