* Fixed titlebar and headerbar top border radius. (#377)

pull/360/merge
Csaba Jakosa 2016-04-23 04:14:18 +02:00 committed by Dustin Falgout
parent c44f3f9b7e
commit 40955cd01e
1 changed files with 12 additions and 0 deletions

View File

@ -67,6 +67,18 @@
border-width: 0 0 1px; border-width: 0 0 1px;
border-style: solid; border-style: solid;
window:not(.tiled):not(.maximized) separator:first-child + &, // tackles the paned container case
window:not(.tiled):not(.maximized) &:first-child { &:backdrop, & { border-top-left-radius: $roundness; } }
window:not(.tiled):not(.maximized) &:last-child { &:backdrop, & { border-top-right-radius: $roundness; } }
}
.background:not(.tiled):not(.maximized) .titlebar {
&:backdrop, & {
border-top-left-radius: $roundness;
border-top-right-radius: $roundness;
}
} }
.titlebar { .titlebar {