summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Müllner <fmuellner@gnome.org>2016-06-09 10:33:48 +0200
committerFlorian Müllner <fmuellner@gnome.org>2016-06-09 10:55:50 +0200
commitf704cbc29959bf60bb8ecc39b0d843d8679aa8f3 (patch)
treeb283a3b2b508ab4aedaf6397bb816dad28e377d4
parent9df216caebb4a87fb78ac8b993fc2b0719a93dbf (diff)
downloadnautilus-f704cbc29959bf60bb8ecc39b0d843d8679aa8f3.tar.gz
theme: Do not use single color "gradients"
GTK's parser now started to complain about gradients with a single color stop ... https://bugzilla.gnome.org/show_bug.cgi?id=767430
-rw-r--r--src/resources/css/Adwaita.css4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/resources/css/Adwaita.css b/src/resources/css/Adwaita.css
index c09ac4e63..bc8e596e3 100644
--- a/src/resources/css/Adwaita.css
+++ b/src/resources/css/Adwaita.css
@@ -48,8 +48,8 @@
@keyframes needs_attention_keyframes {
0% {background-image: linear-gradient(to bottom, #fafafa, #ededed 40%, #e0e0e0); border-color: @borders; }
/* can't do animation-direction, so holding the color on two keyframes */
- 30% {background-image: linear-gradient(to bottom, @theme_base_color); border-color: @theme_fg_color; }
- 90% {background-image: linear-gradient(to bottom, @theme_base_color); border-color: @theme_fg_color; }
+ 30% {background-image: linear-gradient(to bottom, @theme_base_color, @theme_base_color, @theme_base_color); border-color: @theme_fg_color; }
+ 90% {background-image: linear-gradient(to bottom, @theme_base_color, @theme_base_color, @theme_base_color); border-color: @theme_fg_color; }
100% {background-image: linear-gradient(to bottom, #fafafa, #ededed 40%, #e0e0e0); border-color: @borders; }
}