themes: Define notebook header border color

Resolves #10000.

The border around notebook headers was not specifically defined in
GIMP's CSS stylesheet, so if the system theme used a different color this
would also change. It has now been defined as @strong-border-color.
The existing CSS was also moved to the same area as the other notebook
header definitions.
This commit is contained in:
Alx Sa 2023-09-18 19:32:13 +00:00
parent eb1a623728
commit cb8384e213
1 changed files with 5 additions and 4 deletions

View File

@ -127,6 +127,11 @@ notebook stack {
background-color: @bg-color;
}
notebook header {
background-color: @bg-color;
border-color: @strong-border-color;
}
/* Use this to make a border or padding around each tab */
notebook header tabs tab {
padding: 1px;
@ -236,10 +241,6 @@ scrolledwindow viewport grid, scrolledwindow viewport box {
border: 0px solid @bg-color;
}
notebook header {
background-color: @bg-color;
}
GimpRuler {
background-color: @ruler-color;
}