Right align comment action links.

git-svn-id: http://svn.automattic.com/wordpress/trunk@7344 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
matt 2008-03-17 17:20:13 +00:00
parent 246b00e8ef
commit 1cbca340d8
3 changed files with 6 additions and 2 deletions

View File

@ -189,7 +189,7 @@ if ($comments) {
<th scope="col" class="check-column"><input type="checkbox" onclick="checkAll(document.getElementById('comments-form'));" /></th>
<th scope="col"><?php _e('Comment') ?></th>
<th scope="col"><?php _e('Date') ?></th>
<th scope="col"><?php _e('Actions') ?></th>
<th scope="col" class="action-links"><?php _e('Actions') ?></th>
</tr>
</thead>
<tbody id="the-comment-list" class="list:comment">

View File

@ -667,7 +667,7 @@ function _wp_comment_row( $comment_id, $mode, $comment_status, $checkbox = true
<p><?php printf(__('From %1$s, %2$s'), $post_link, $ptime) ?></p>
</td>
<td><?php comment_date(__('Y/m/d')); ?></td>
<td>
<td class="action-links">
<?php
$actions = array();

View File

@ -1385,3 +1385,7 @@ ul.view-switch li.current {
-webkit-border-radius: 8px;
border-radius: 8px;
}
.action-links {
text-align: right;
}