mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 16:50:11 +00:00
4d92835997
Checks shorthands are properly unpacked in the CSS and that they indeed set all relevant properties. Or at least border-width does.
22 lines
218 B
CSS
22 lines
218 B
CSS
* {
|
|
engine: none;
|
|
border-radius: 0;
|
|
}
|
|
|
|
GtkWidget {
|
|
border-right-width: 5;
|
|
}
|
|
|
|
GtkEntry {
|
|
border-width: 10 20;
|
|
}
|
|
|
|
.entry {
|
|
border-left-width: 10;
|
|
border-right-width: 10;
|
|
}
|
|
|
|
#reference {
|
|
border-width: 10;
|
|
}
|