Adwaita: stricter selector for split headerbar separator

with a descendant select was erroneusly catching normal headerbar
separators in paned split headerabar case, see gedit. Using a child
selector fixes.
This commit is contained in:
Lapo Calamandrei 2016-02-26 13:15:37 +01:00
parent 296a7c24f9
commit 9f606b8270
3 changed files with 3 additions and 3 deletions

View File

@ -1365,7 +1365,7 @@ headerbar {
box-shadow: none;
}
separator { background-color: $borders_color; }
> separator { background-color: $borders_color; }
@extend %titlebar;
}

View File

@ -1766,7 +1766,7 @@ window.csd > .titlebar:not(headerbar) {
border-style: none;
border-color: transparent;
box-shadow: none; }
.titlebar:not(headerbar) separator {
.titlebar:not(headerbar) > separator {
background-color: #1c1f1f; }
/************

View File

@ -1770,7 +1770,7 @@ window.csd > .titlebar:not(headerbar) {
border-style: none;
border-color: transparent;
box-shadow: none; }
.titlebar:not(headerbar) separator {
.titlebar:not(headerbar) > separator {
background-color: #9d9d99; }
/************