]> git.wh0rd.org Git - tt-rss.git/commitdiff
de-emphasize article author
authorAndrew Dolgov <fox@madoka.volgo-balt.ru>
Fri, 22 Mar 2013 08:42:48 +0000 (12:42 +0400)
committerAndrew Dolgov <fox@madoka.volgo-balt.ru>
Fri, 22 Mar 2013 08:42:48 +0000 (12:42 +0400)
cdm.css
include/functions.php
tt-rss.css

diff --git a/cdm.css b/cdm.css
index 021135dfce51452e59ac50b72803fd5cf191270a..941a51101fe2a67fe1ad187409a58a4c9df1ecc4 100644 (file)
--- a/cdm.css
+++ b/cdm.css
@@ -159,3 +159,8 @@ div.cdmContentInner p {
 div.cdmContentInner iframe {
        min-width : 50%;
 }
+
+div.cdmHeader span.author {
+       color : gray;
+       font-size : 11px;
+}
index 8804d71d13789738c297fa4ca4fe7ceb6ca8f0a6..3e87672e280914ef27fe0f230dfb90cbd5fe8081 100644 (file)
                                        title=\"".htmlspecialchars($line['title'])."\"
                                        href=\"" .
                                        htmlspecialchars($line["link"]) . "\">" .
-                                       $line["title"] .
-                                       "<span class='author'>$entry_author</span></a></div>";
+                                       $line["title"] . "</a>" .
+                                       "<span class='author'>$entry_author</span></div>";
                        } else {
                                $rv['content'] .= "<div class='postTitle'>" . $line["title"] . "$entry_author</div>";
                        }
index 9fc52b209d4c55faf42d2bfd7e5a30bcbcd45deb..ff7134f117a0c5b36b7e31ba0863ff80887779e6 100644 (file)
@@ -1198,3 +1198,8 @@ div.postContent p {
 div.postContent iframe {
        min-width : 50%;
 }
+
+div.postHeader span.author {
+       color : gray;
+       font-size : 11px;
+}