From beedec5457bc7a82b78b99ac77d5cb62b54836c2 Mon Sep 17 00:00:00 2001 From: Gilberto Agostinho Date: Sat, 7 Sep 2019 18:38:56 +0100 Subject: [PATCH] separators look better with dark themes --- styles/tool-bar.less | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/styles/tool-bar.less b/styles/tool-bar.less index 0cfa8ae..af59515 100644 --- a/styles/tool-bar.less +++ b/styles/tool-bar.less @@ -47,15 +47,15 @@ &.tool-bar-horizontal .tool-bar-spacer { border: 0 none; - border-left: @button-border-size solid @button-background-color; - border-right: @button-border-size solid @button-border-color; + border-left: @button-border-size solid rgba(125, 125, 125, 0.3); + border-right: @button-border-size solid rgba(125, 125, 125, 0.3); -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0),rgba(0,0,0,0.7),rgba(0,0,0,1),rgba(0,0,0,0.7), rgba(0,0,0,0)); margin: @button-margin-size + 3 0; } &.tool-bar-vertical .tool-bar-spacer { border: 0 none; - border-bottom: @button-border-size solid @button-background-color; - border-top: @button-border-size solid @button-border-color; + border-bottom: @button-border-size solid rgba(125, 125, 125, 0.3); + border-top: @button-border-size solid rgba(125, 125, 125, 0.3); -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0),rgba(0,0,0,0.7),rgba(0,0,0,1),rgba(0,0,0,0.7), rgba(0,0,0,0)); margin: 0 @button-margin-size + 3; }