diff options
author | Horst3180 | 2015-09-22 00:38:56 +0200 |
---|---|---|
committer | Horst3180 | 2015-09-22 00:38:56 +0200 |
commit | dee39f4419c6826a90f807914fbf4328144e89bb (patch) | |
tree | 707f476fec0189ce5f42d49f7ac6c9adc9426f72 /common/gnome-shell/3.18/sass | |
parent | f10e22f846fbd2972a866927be45ec13e56c25b0 (diff) | |
download | solarc-theme-dee39f4419c6826a90f807914fbf4328144e89bb.tar.gz solarc-theme-dee39f4419c6826a90f807914fbf4328144e89bb.tar.xz solarc-theme-dee39f4419c6826a90f807914fbf4328144e89bb.zip |
some tweaks for gnome-shell 3.18
Diffstat (limited to 'common/gnome-shell/3.18/sass')
-rw-r--r-- | common/gnome-shell/3.18/sass/_common.scss | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/common/gnome-shell/3.18/sass/_common.scss b/common/gnome-shell/3.18/sass/_common.scss index c1d2a5a..fc818a7 100644 --- a/common/gnome-shell/3.18/sass/_common.scss +++ b/common/gnome-shell/3.18/sass/_common.scss @@ -213,15 +213,15 @@ StScrollBar { } &-linked-button { - height: 38px; + height: if($variant=='light', 39px, 38px); padding: 0; box-shadow: inset 0 0 black; - border-top-width: 1px; + border-top-width: if($variant=='light', 0px, 1px); border-bottom-width: 0; color: $osd_fg_color; background-color: $osd_bg_color; - border-color: darken($osd_bg_color, 5%); + border-color: if($variant=='light', darken($osd_bg_color, 5%), darken($osd_bg_color, 8%)); &:hover { background-color: lighten($osd_bg_color, 5%); } &:focus { color: $selected_bg_color; } |