mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-17 14:30:15 +00:00
21 lines
456 B
CSS
21 lines
456 B
CSS
.button-image {
|
|
engine: none;
|
|
|
|
border-image-source: -gtk-gradient(linear,
|
|
left top, left bottom,
|
|
from(green),
|
|
to(green));
|
|
border-image-slice: 1;
|
|
border-image-repeat: 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;
|
|
}
|