summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-22 12:42:48 +0400
committerAndrew Dolgov <[email protected]>2013-03-22 12:42:48 +0400
commit11bd95b4f32ee4d4472d66c22874f68905692bf7 (patch)
tree07fb61c7afc4b74b402d2ea428e5ff40e626fb0b
parent06b0777fa765126f1efbb50c6cf9905d2a1d3051 (diff)
de-emphasize article author
-rw-r--r--cdm.css5
-rw-r--r--include/functions.php4
-rw-r--r--tt-rss.css5
3 files changed, 12 insertions, 2 deletions
diff --git a/cdm.css b/cdm.css
index 021135dfc..941a51101 100644
--- 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;
+}
diff --git a/include/functions.php b/include/functions.php
index 8804d71d1..3e87672e2 100644
--- a/include/functions.php
+++ b/include/functions.php
@@ -3024,8 +3024,8 @@
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>";
}
diff --git a/tt-rss.css b/tt-rss.css
index 9fc52b209..ff7134f11 100644
--- a/tt-rss.css
+++ b/tt-rss.css
@@ -1198,3 +1198,8 @@ div.postContent p {
div.postContent iframe {
min-width : 50%;
}
+
+div.postHeader span.author {
+ color : gray;
+ font-size : 11px;
+}