From e4627160e89e01b75de35e3793fbd0541ea20694 Mon Sep 17 00:00:00 2001 From: Khurshid Alam Date: Tue, 16 Feb 2016 11:05:30 +0530 Subject: [PATCH] More tweaks for window border color under unity decoration --- gtk-3.0/scss/apps/_unity.scss | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/gtk-3.0/scss/apps/_unity.scss b/gtk-3.0/scss/apps/_unity.scss index 0113e45..6bc77a9 100644 --- a/gtk-3.0/scss/apps/_unity.scss +++ b/gtk-3.0/scss/apps/_unity.scss @@ -25,7 +25,7 @@ &.top { - border: 1px solid $wm_border_focused; + border: 1px solid mix(shade($titlebar_bg_color, 0.7), $titlebar_fg_color, 0.21); border-bottom: 0; border-radius: 2px 2px 0 0; padding: 1px 8px 0 8px; @@ -34,16 +34,18 @@ text-shadow: none; &:backdrop { - border: 1px solid $wm_border_unfocused; + border: 1px solid mix(shade($titlebar_bg_color, 0.7), $titlebar_fg_color, 0.12); + border-bottom: 0; + background-color: $titlebar_bg_color; color: mix($titlebar_fg_color, $titlebar_bg_color, .4); } } &.left, &.right, &.bottom { - background-color: $titlebar_bg_color; + background-color: mix(shade($titlebar_bg_color, 0.7), $titlebar_fg_color, 0.21); &:backdrop { - background-color: mix(shade($titlebar_bg_color, 0.7), $titlebar_fg_color, 0.21); + background-color: mix(shade($titlebar_bg_color, 0.7), $titlebar_fg_color, 0.12); } } }