[GTK-3.20] Fix backdrop mode in Ubuntu. Fixes #585

This fixes backdrop mode for merged headerbar+titlebar apps in Ubuntu. No more white dots between headerbar and titlebar corner.
pull/611/head
Csaba Jakosa 2016-10-21 20:14:48 +02:00 committed by Khurshid Alam
parent 25fa93c22d
commit a457b8fd5b
1 changed files with 11 additions and 0 deletions

View File

@ -218,4 +218,15 @@
border-top-right-radius: $roundness; border-top-right-radius: $roundness;
} }
} }
// Fixed: https://github.com/numixproject/numix-gtk-theme/issues/585
// workaround for ugly Ubuntu-related CSD patches
.background:not(.csd):not(.ssd):not(.solid-csd) headerbar {
&, &:backdrop {
&, &:not(:last-child) {
border-radius: 0;
border-top-color: transparent;
}
}
}
} }