summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2007-04-01 05:04:20 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2007-04-01 05:04:20 +0000
commita2baa4449965082c2a22bbb5e7d0ef9fccf2371b (patch)
treed96207b12196e547e3820f8e85c1ed91a6144cc0 /themes
parentdd30a142086c698844911b3eb1d54a6566aee107 (diff)
downloadbrdo-a2baa4449965082c2a22bbb5e7d0ef9fccf2371b.tar.gz
brdo-a2baa4449965082c2a22bbb5e7d0ef9fccf2371b.tar.bz2
#130366: Better styling for signature separator (thanks webchick).
Diffstat (limited to 'themes')
-rw-r--r--themes/bluemarine/comment.tpl.php3
-rw-r--r--themes/chameleon/chameleon.theme3
-rw-r--r--themes/garland/comment.tpl.php4
-rw-r--r--themes/pushbutton/comment.tpl.php3
4 files changed, 8 insertions, 5 deletions
diff --git a/themes/bluemarine/comment.tpl.php b/themes/bluemarine/comment.tpl.php
index 810204fc2..b73b7aef3 100644
--- a/themes/bluemarine/comment.tpl.php
+++ b/themes/bluemarine/comment.tpl.php
@@ -7,7 +7,8 @@
<div class="content">
<?php print $content; ?>
<?php if ($signature): ?>
- <div class="user-signature clear-block">
+ <div class="clear-block">
+ <div>—</div>
<?php print $signature ?>
</div>
<?php endif; ?>
diff --git a/themes/chameleon/chameleon.theme b/themes/chameleon/chameleon.theme
index c3da58a40..bdd455616 100644
--- a/themes/chameleon/chameleon.theme
+++ b/themes/chameleon/chameleon.theme
@@ -165,7 +165,8 @@ function chameleon_comment($comment, $links = "") {
$output .= " <h3 class=\"title\">". l($comment->subject, $_GET['q'], NULL, NULL, "comment-$comment->cid") ."</h3>\n";
$output .= " <div class=\"content\">". $comment->comment;
if ($signature) {
- $output .= " <div class=\"user-signature clear-block\">";
+ $output .= " <div class=\"clear-block\">";
+ $output .= "<div>—</div>\n";
$output .= $signature ."\n";
$output .= " </div>\n";
}
diff --git a/themes/garland/comment.tpl.php b/themes/garland/comment.tpl.php
index 1ca545f12..a28a1c551 100644
--- a/themes/garland/comment.tpl.php
+++ b/themes/garland/comment.tpl.php
@@ -17,12 +17,12 @@
<div class="content">
<?php print $content ?>
<?php if ($signature): ?>
- <div class="user-signature clear-block">
+ <div class="clear-block">
+ <div>—</div>
<?php print $signature ?>
</div>
<?php endif; ?>
</div>
-
</div>
<?php if ($links): ?>
diff --git a/themes/pushbutton/comment.tpl.php b/themes/pushbutton/comment.tpl.php
index 20949e774..dba7452d5 100644
--- a/themes/pushbutton/comment.tpl.php
+++ b/themes/pushbutton/comment.tpl.php
@@ -7,7 +7,8 @@
<div class="content">
<?php print $content ?>
<?php if ($signature): ?>
- <div class="user-signature clear-block">
+ <div class="clear-block">
+ <div>—</div>
<?php print $signature ?>
</div>
<?php endif; ?>