diff options
Diffstat (limited to 'themes')
-rw-r--r-- | themes/chameleon/chameleon.theme | 3 | ||||
-rw-r--r-- | themes/xtemplate/default/xtemplate.css | 3 | ||||
-rw-r--r-- | themes/xtemplate/xtemplate.theme | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/themes/chameleon/chameleon.theme b/themes/chameleon/chameleon.theme index c9809e377..6906fbaa8 100644 --- a/themes/chameleon/chameleon.theme +++ b/themes/chameleon/chameleon.theme @@ -141,12 +141,11 @@ function chameleon_comment($comment, $link = "") { $links = array($link); $output = "<div class=\"comment\">\n"; - $output .= " <h3 class=\"title\">". $comment->subject ."</h3>\n"; + $output .= " <h3 class=\"title\">". l($comment->subject, $_GET['q'], NULL, NULL, "comment-$comment->cid") ."</h3>\n"; $output .= " <div class=\"content\">". $comment->comment ."</div>\n"; $output .= " <div class=\"links\">". theme('links', array_merge($submitted, $links)) ."</div>\n"; $output .= "</div>\n"; return $output; } - ?> diff --git a/themes/xtemplate/default/xtemplate.css b/themes/xtemplate/default/xtemplate.css index b2bc4eb31..51dc99cfc 100644 --- a/themes/xtemplate/default/xtemplate.css +++ b/themes/xtemplate/default/xtemplate.css @@ -251,8 +251,9 @@ table { padding: .5em; margin-bottom: 1em; } -.comment .title { +.comment .title a { font-size: 1.1em; + font-weight: normal; } .comment .new { text-align: right; diff --git a/themes/xtemplate/xtemplate.theme b/themes/xtemplate/xtemplate.theme index 51443403b..3a63e03ee 100644 --- a/themes/xtemplate/xtemplate.theme +++ b/themes/xtemplate/xtemplate.theme @@ -99,7 +99,7 @@ function xtemplate_comment($comment, $links = 0) { "submitted" => t("Submitted by %a on %b.", array("%a" => format_name($comment), "%b" => format_date($comment->timestamp))), - "title" => $comment->subject, + "title" => l($comment->subject, $_GET['q'], NULL, NULL, "comment-$comment->cid"), "author" => format_name($comment), "date" => format_date($comment->timestamp), "content" => $comment->comment |