mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 16:50:11 +00:00
95f5ca062b
Fix border-image-url reftest
17 lines
267 B
CSS
17 lines
267 B
CSS
.button-image {
|
|
engine: none;
|
|
|
|
border-image: url("green-20x20.png") 1 stretch;
|
|
|
|
border-width: 1 2 2 1;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.button-not-image {
|
|
border-color: green;
|
|
border-style: solid;
|
|
border-width: 1 2 2 1;
|
|
border-radius: 0;
|
|
border-image: none;
|
|
}
|