forked from AuroraMiddleware/gtk
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;
|
|
}
|