diff --git a/stylesheets/panels.less b/stylesheets/panels.less index 8355b98..71496bb 100644 --- a/stylesheets/panels.less +++ b/stylesheets/panels.less @@ -28,7 +28,6 @@ .inset-panel { position: relative; background-color: @inset-panel-background-color; - border-radius: @component-border-radius; } .is-blurred { diff --git a/stylesheets/tabs.less b/stylesheets/tabs.less index aff1dd9..be4fbcc 100644 --- a/stylesheets/tabs.less +++ b/stylesheets/tabs.less @@ -21,7 +21,7 @@ left: 0px; width: 100%; background-color: @tab-background-color-active; - border-top: 1px solid @tab-border-color; + border-top: 1px solid lighten(@tab-border-color, 5%); } .tab { @@ -75,10 +75,9 @@ .tab.active { z-index: 10; - line-height: @tab-height - 4px; + line-height: @tab-height - 3px; color: @text-color-highlight; - box-shadow: inset -1px -1px 0 @tab-border-color; - border: none; + box-shadow: inset -1px 1px 0 lighten(@tab-border-color, 5%); .title{ position: relative; @@ -92,8 +91,10 @@ &, &:before { background-image: -webkit-linear-gradient(top, lighten(@tab-background-color-active, 7%), @tab-background-color-active); height: @tab-height + 1px; - box-shadow: inset 1px 1px 0 @tab-border-color; - border: none; + } + + &:before { + box-shadow: inset 1px 1px 0 lighten(@tab-border-color, 5%); } } diff --git a/stylesheets/ui-variables.less b/stylesheets/ui-variables.less index bc2554f..1a921e5 100644 --- a/stylesheets/ui-variables.less +++ b/stylesheets/ui-variables.less @@ -49,7 +49,7 @@ @tab-bar-border-color: darken(@tab-background-color-active, 10%); @tab-background-color: #333; @tab-background-color-active: #222; -@tab-border-color: red; +@tab-border-color: #333; @tree-view-background-color: @tool-panel-background-color; @tree-view-border-color: @tool-panel-border-color;