[epiphany] CSS: Make url entry transparent in normal windows



commit 32508d249f0de30ebc1908c05e17c3f5eb4cf35a
Author: Alexander Mikhaylenko <exalm7659 gmail com>
Date:   Thu Jan 31 01:35:01 2019 +0500

    CSS: Make url entry transparent in normal windows

 src/resources/themes/Adwaita.css  | 4 ++--
 src/resources/themes/Adwaita.scss | 8 ++++----
 2 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/src/resources/themes/Adwaita.css b/src/resources/themes/Adwaita.css
index 2a86ad47f..0e8eaccf8 100644
--- a/src/resources/themes/Adwaita.css
+++ b/src/resources/themes/Adwaita.css
@@ -47,8 +47,6 @@
 
 .incognito-mode headerbar entry, .incognito-mode actionbar entry { border-color: #9cb9da; }
 
-.incognito-mode headerbar entry:not(:hover):not(:focus), .incognito-mode actionbar 
entry:not(:hover):not(:focus) { background-color: rgba(255, 255, 255, 0.75); }
-
 .incognito-mode headerbar entry:focus, .incognito-mode actionbar entry:focus { border-color: #3584e4; 
box-shadow: inset 0 0 0 1px #3584e4; }
 
 .incognito-mode headerbar entry:backdrop, .incognito-mode actionbar entry:backdrop { box-shadow: none; }
@@ -95,6 +93,8 @@
 
 .automation-mode headerbar entry:backdrop { box-shadow: none; }
 
+.url_entry:not(:hover):not(:focus) { background-color: rgba(255, 255, 255, 0.75); }
+
 .bookmark-tag-widget { background-color: #dfdcd8; }
 
 .bookmark-tag-widget image, .bookmark-tag-widget label { color: #2e3436; }
diff --git a/src/resources/themes/Adwaita.scss b/src/resources/themes/Adwaita.scss
index 69434ed03..f97b8b082 100644
--- a/src/resources/themes/Adwaita.scss
+++ b/src/resources/themes/Adwaita.scss
@@ -77,10 +77,6 @@
     entry {
       border-color: _border_color($incognito_borders_color);
 
-      &:not(:hover):not(:focus) {
-        background-color: transparentize($base_color, 0.25);
-      }
-
       &:focus {
         border-color: entry_focus_border($selected_bg_color);
         box-shadow: entry_focus_shadow($selected_bg_color);
@@ -154,6 +150,10 @@
   }
 }
 
+.url_entry:not(:hover):not(:focus) {
+  background-color: transparentize($base_color, 0.25);
+}
+
 $close_button_fg_color: lighten($fg_color, 10%);
 .bookmark-tag-widget {
   background-color: darken($bg_color, 10%);


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