mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 08:40:08 +00:00
28 lines
416 B
CSS
28 lines
416 B
CSS
@import url("reset-to-defaults.css");
|
|
|
|
GtkButton {
|
|
background-color: red;
|
|
border-color: lime;
|
|
border-width: 1px;
|
|
}
|
|
|
|
.button-top-left {
|
|
border-style: solid none none solid;
|
|
}
|
|
|
|
.button-top-right {
|
|
border-style: solid solid none none;
|
|
}
|
|
|
|
.button-bottom-left {
|
|
border-style: none none solid solid;
|
|
}
|
|
|
|
.button-bottom-right {
|
|
border-style: none solid solid none;
|
|
}
|
|
|
|
.button-border {
|
|
border-style: solid;
|
|
}
|