[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.
This commit is contained in:
Csaba Jakosa
2016-10-21 23:44:48 +05:30
committed by Khurshid Alam
parent 25fa93c22d
commit a457b8fd5b
+11
View File
@@ -218,4 +218,15 @@
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;
}
}
}
}