* Unity bug fix.

pull/521/head
Megax 2016-09-02 08:01:17 +02:00
parent a26a9ba54c
commit 1e9a730037
1 changed files with 5 additions and 5 deletions
gtk-3.20/scss/apps

View File

@ -27,8 +27,8 @@
.top {
border: 1px solid $wm_border_focused;
border-bottom: 0;
border-radius: 2px 2px 0 0;
padding: 1px ($spacing * 2) 0;
border-radius: $roundness $roundness 0 0;
padding: 1px ($spacing + 3px) 0 ($spacing + 3px);
background-color: $titlebar_bg_color;
color: mix($titlebar_fg_color, $titlebar_bg_color, .1);
text-shadow: none;
@ -39,10 +39,10 @@
}
}
.left, .right, .bottom {
background-color: $wm_border_focused;
.left, .right, .bottom, {
background-color: $titlebar_bg_color;
&:backdrop { background-color: $wm_border_unfocused; }
&:backdrop { background-color: mix(shade($titlebar_bg_color, 0.7), $titlebar_fg_color, 0.21); }
}
}