mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 00:30:08 +00:00
16 lines
245 B
CSS
16 lines
245 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;
|
||
|
}
|