[SSE] Change style for selected and colored sheets

This commit is contained in:
Julia Radzhabova 2019-11-15 13:08:57 +03:00
parent f18a08837f
commit 4d7afb1b85
2 changed files with 4 additions and 4 deletions

View file

@ -676,9 +676,9 @@ define([
if (color.length) { if (color.length) {
if (!tab.isActive()) { if (!tab.isActive()) {
color = '0px 3px 0 ' + Common.Utils.RGBColor(color).toRGBA(0.7) + ' inset'; color = '0px 4px 0 ' + Common.Utils.RGBColor(color).toRGBA(1) + ' inset';
} else { } else {
color = '0px 3px 0 ' + color + ' inset'; color = '0px 4px 0 ' + color + ' inset';
} }
tab.$el.find('a').css('box-shadow', color); tab.$el.find('a').css('box-shadow', color);

View file

@ -188,7 +188,7 @@
background-color: @body-bg; background-color: @body-bg;
outline: none; outline: none;
box-shadow: 0px 2px 0 @gray-deep inset; box-shadow: 0px 4px 0 #49795d inset;
border-top-width: 0; border-top-width: 0;
font-weight: bold; font-weight: bold;
} }
@ -198,7 +198,7 @@
> a { > a {
border-bottom-color: @body-bg; border-bottom-color: @body-bg;
background-color: @body-bg; background-color: @body-bg;
box-shadow: 0px 2px 0 @gray-deep inset; box-shadow: 0px 4px 0 #49795d inset;
} }
} }