diff options
author | Horst3180 | 2015-07-17 23:43:41 +0200 |
---|---|---|
committer | Horst3180 | 2015-07-17 23:43:41 +0200 |
commit | 2a70924f33b8bdb1f7dc9303a7dee43f9c9b8e6c (patch) | |
tree | 52de7083b5b32a7c169698ca39c6c97dc17cc6df /common/gtk-3.0/3.16 | |
parent | d4e5289967d2d305987f51b5544a4befd167c852 (diff) | |
download | solarc-theme-2a70924f33b8bdb1f7dc9303a7dee43f9c9b8e6c.tar.gz solarc-theme-2a70924f33b8bdb1f7dc9303a7dee43f9c9b8e6c.tar.xz solarc-theme-2a70924f33b8bdb1f7dc9303a7dee43f9c9b8e6c.zip |
fix non-transparent mode
Diffstat (limited to 'common/gtk-3.0/3.16')
-rw-r--r-- | common/gtk-3.0/3.16/gtk-contained-solid-dark.css | 2 | ||||
-rw-r--r-- | common/gtk-3.0/3.16/gtk-contained-solid-darker.css | 2 | ||||
-rw-r--r-- | common/gtk-3.0/3.16/gtk-contained-solid.css | 2 | ||||
-rw-r--r-- | common/gtk-3.0/3.16/sass/_common.scss | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/common/gtk-3.0/3.16/gtk-contained-solid-dark.css b/common/gtk-3.0/3.16/gtk-contained-solid-dark.css index 159cf51..4325240 100644 --- a/common/gtk-3.0/3.16/gtk-contained-solid-dark.css +++ b/common/gtk-3.0/3.16/gtk-contained-solid-dark.css @@ -33,7 +33,7 @@ ***************/ .background { color: #D3DAE3; - background-color: rgba(68, 72, 82, 0.999); } + background-color: #444852; } /* These wildcard seems unavoidable, need to investigate. diff --git a/common/gtk-3.0/3.16/gtk-contained-solid-darker.css b/common/gtk-3.0/3.16/gtk-contained-solid-darker.css index 4af1c01..b3b3330 100644 --- a/common/gtk-3.0/3.16/gtk-contained-solid-darker.css +++ b/common/gtk-3.0/3.16/gtk-contained-solid-darker.css @@ -33,7 +33,7 @@ ***************/ .background { color: #5c616c; - background-color: rgba(245, 246, 247, 0.999); } + background-color: #F5F6F7; } /* These wildcard seems unavoidable, need to investigate. diff --git a/common/gtk-3.0/3.16/gtk-contained-solid.css b/common/gtk-3.0/3.16/gtk-contained-solid.css index 946e6af..921527e 100644 --- a/common/gtk-3.0/3.16/gtk-contained-solid.css +++ b/common/gtk-3.0/3.16/gtk-contained-solid.css @@ -33,7 +33,7 @@ ***************/ .background { color: #5c616c; - background-color: rgba(245, 246, 247, 0.999); } + background-color: #F5F6F7; } /* These wildcard seems unavoidable, need to investigate. diff --git a/common/gtk-3.0/3.16/sass/_common.scss b/common/gtk-3.0/3.16/sass/_common.scss index 5469eb6..ccbf3c2 100644 --- a/common/gtk-3.0/3.16/sass/_common.scss +++ b/common/gtk-3.0/3.16/sass/_common.scss @@ -64,7 +64,7 @@ $darker_asset_suffix: if($darker=='true', '-dark', $asset_suffix); .background { color: $fg_color; - background-color: transparentize($bg_color, 0.001); // without this headerbar transparency doesn't seem to work + background-color: if($transparency == 'true', transparentize($bg_color, 0.001), $bg_color); // without this headerbar transparency doesn't seem to work } /* |