mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-01 00:11:29 +00:00
a66287a62e
This was failing because the grid is now respecting border width too. Making the selector more specific so it only applies to the toolbars fixes this.
18 lines
300 B
CSS
18 lines
300 B
CSS
@import "reset-to-defaults.css";
|
|
|
|
toolbar {
|
|
border-image: url("green-20x20.png") 5000;
|
|
background-image: none;
|
|
background-color: #000;
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
padding: 0;
|
|
border-radius: 0;
|
|
}
|
|
|
|
grid * {
|
|
background-color: lime;
|
|
border-style: none;
|
|
border-width: 0;
|
|
}
|