[epiphany] theme: Fix background image color



commit 07efd4fc021034a7a30c9ef23f05d0b1894309e9
Author: Michael Catanzaro <mcatanzaro igalia com>
Date:   Sat Apr 30 19:15:04 2016 -0500

    theme: Fix background image color
    
    Per advice of Lapo

 src/resources/epiphany.css  |    4 ++--
 src/resources/epiphany.scss |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/src/resources/epiphany.css b/src/resources/epiphany.css
index d14fa34..48ca6e8 100644
--- a/src/resources/epiphany.css
+++ b/src/resources/epiphany.css
@@ -28,7 +28,7 @@ button.active-menu {
   background-image: linear-gradient(to top, #a5b1bd, #c5cdd5 2px, #cbd2d9 3px);
   background-color: #cbd2d9;
   box-shadow: inset 0 1px #f1f3f5;
-  background-image: -gtk-icontheme("user-not-tracked-symbolic");
+  background-image: -gtk-icontheme("user-not-tracked-symbolic"), image(#cbd2d9);
   background-size: 64px 64px, 100% 100%;
   background-position: 160px 0, 0 0;
   background-repeat: no-repeat, no-repeat;
@@ -39,7 +39,7 @@ button.active-menu {
     .incognito-mode.titlebar > *:backdrop {
       color: #8b8e8e; }
   .incognito-mode.titlebar:backdrop {
-    background-image: -gtk-icontheme("user-not-tracked-symbolic");
+    background-image: -gtk-icontheme("user-not-tracked-symbolic"), image(#cbd2d9);
     box-shadow: inset 0 1px #f1f3f5;
     color: rgba(139, 142, 142, 0.1); }
   .incognito-mode.titlebar button {
diff --git a/src/resources/epiphany.scss b/src/resources/epiphany.scss
index ee073bf..5c85b17 100644
--- a/src/resources/epiphany.scss
+++ b/src/resources/epiphany.scss
@@ -45,7 +45,7 @@ $edge_color: lighten($incognito_color, 13%);
 .incognito-mode {
   &.titlebar {
     @include headerbar_fill($incognito_color, $hc:$edge_color);
-    background-image: -gtk-icontheme($incognito_icon);
+    background-image: -gtk-icontheme($incognito_icon), image($incognito_color);
     background-size: 64px 64px, 100% 100%;
     background-position: 160px 0, 0 0;
     background-repeat: no-repeat, no-repeat;
@@ -56,7 +56,7 @@ $edge_color: lighten($incognito_color, 13%);
       &:backdrop { color: $backdrop_fg_color }
     }
     &:backdrop {
-      background-image: -gtk-icontheme($incognito_icon);
+      background-image: -gtk-icontheme($incognito_icon), image($incognito_color);
       box-shadow: inset 0 1px $edge_color;
       color: transparentize($backdrop_fg_color, 0.9); // color of the overlayed icon in backdrop
     }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]