diff options
Diffstat (limited to 'common/gtk-3.0/3.20/sass/_common.scss')
-rw-r--r-- | common/gtk-3.0/3.20/sass/_common.scss | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/common/gtk-3.0/3.20/sass/_common.scss b/common/gtk-3.0/3.20/sass/_common.scss index 43159eb..fa080ee 100644 --- a/common/gtk-3.0/3.20/sass/_common.scss +++ b/common/gtk-3.0/3.20/sass/_common.scss @@ -239,13 +239,13 @@ entry { &.#{$e_type} { color: $e_fg_color; border-color: if($variant=='light', $e_color, $entry_border); - background-image: linear-gradient(to bottom, mix($e_color, $base_color, 60%)); + background-color: mix($e_color, $base_color, 60%); image { color: $e_fg_color; } &:focus { color: $e_fg_color; - background-image: linear-gradient(to bottom, $e_color); + background-color: $e_color; box-shadow: none; } selection, selection:focus { @@ -1147,11 +1147,11 @@ headerbar { &.#{$e_type} { color: $e_fg_color; border-color: if($darker=='false' and $variant=='light', $e_color, $header_entry_border); - background-image: linear-gradient(to bottom, mix($e_color, $header_bg, 60%)); + background-color: mix($e_color, $header_bg, 60%); &:focus { color: $e_fg_color; - background-image: linear-gradient(to bottom, $e_color); + background-color: $e_color; } selection, selection:focus { background-color: $e_fg_color; |