mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 16:50:11 +00:00
25 lines
550 B
CSS
25 lines
550 B
CSS
* {
|
|
engine: none;
|
|
border-image: none;
|
|
border-radius: 0;
|
|
border-style: solid;
|
|
border-color: transparent;
|
|
border-width: 0;
|
|
}
|
|
|
|
.button-image {
|
|
border-image-source: -gtk-gradient(linear,
|
|
left top, left bottom,
|
|
from(green),
|
|
to(green));
|
|
border-image-slice: 1;
|
|
border-image-repeat: stretch;
|
|
border-width: 1px 2px 2px 1px;
|
|
}
|
|
|
|
.button-not-image {
|
|
border-color: green;
|
|
border-style: solid;
|
|
border-width: 1px 2px 2px 1px;
|
|
}
|