themes: Fix system theme leak on notebook header

Some system themes add a box shadow and change borders
for GtkNotebook headers. This patch adds rules defining these,
along with defining the outline for header buttons when hovered
over.
This commit is contained in:
Alx Sa 2025-06-15 17:08:14 +00:00
parent 55bad480b8
commit bd79df9858

View file

@ -177,13 +177,19 @@ notebook stack {
notebook header {
background-color: @bg-color;
border-color: @edge-border-color;
border-bottom: 1px solid @edge-border-color;
box-shadow: none;
}
notebook header button {
box-shadow: none;
}
notebook header button:hover {
background-color: @selected-color;
border-color: @edge-border-color;
}
notebook header tabs {
background-color: transparent;
}