From 86f7d2a9f2b6468a34b20d7a26c7cfc3afbe00ee Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 15 Apr 2013 18:09:48 +0400 Subject: make gradient less visible on read headlines --- classes/feeds.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/classes/feeds.php b/classes/feeds.php index 6d15c99e8..6ee5bad0b 100644 --- a/classes/feeds.php +++ b/classes/feeds.php @@ -413,8 +413,13 @@ class Feeds extends Handler_Protected { $rgba = $rgba_cache[$feed_id]; + if (sql_bool_to_bool($line["unread"])) + $endalpha = '0.3'; + else + $endalpha = '0.1'; + // W3C definition seems to work in FF and Chrome - $row_background = "background-image : linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba($rgba, 0.3) 100%);"; + $row_background = "background-image : linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba($rgba, $endalpha) 100%);"; /* $row_background = "background-image : -moz-linear-gradient(left, rgba(255, 255, 255, 0) 50%, rgba($rgba, 0.2) 100%);". "background-image : linear-gradient(to right, rgba(255, 255, 255, 0) 50%, rgba($rgba, 0.2) 100%);"; -- cgit v1.2.3