]> git.wh0rd.org Git - tt-rss.git/commitdiff
make gradient less visible on read headlines
authorAndrew Dolgov <fox@madoka.volgo-balt.ru>
Mon, 15 Apr 2013 14:09:48 +0000 (18:09 +0400)
committerAndrew Dolgov <fox@madoka.volgo-balt.ru>
Mon, 15 Apr 2013 14:09:48 +0000 (18:09 +0400)
classes/feeds.php

index 6d15c99e8bc73dd133e3b7473cc373caeeec3a74..6ee5bad0b8626606255338c8d8ec6f5e3ae47e7d 100644 (file)
@@ -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%);";