From: Andrew Dolgov Date: Mon, 15 Apr 2013 14:09:48 +0000 (+0400) Subject: make gradient less visible on read headlines X-Git-Tag: 1.7.9~25^2~211 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=86f7d2a9f2b6468a34b20d7a26c7cfc3afbe00ee;p=tt-rss.git make gradient less visible on read headlines --- diff --git a/classes/feeds.php b/classes/feeds.php index 6d15c99e..6ee5bad0 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%);";