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:
parent
246b00e8ef
commit
1cbca340d8
|
@ -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" 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('Comment') ?></th>
|
||||||
<th scope="col"><?php _e('Date') ?></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>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody id="the-comment-list" class="list:comment">
|
<tbody id="the-comment-list" class="list:comment">
|
||||||
|
|
|
@ -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>
|
<p><?php printf(__('From %1$s, %2$s'), $post_link, $ptime) ?></p>
|
||||||
</td>
|
</td>
|
||||||
<td><?php comment_date(__('Y/m/d')); ?></td>
|
<td><?php comment_date(__('Y/m/d')); ?></td>
|
||||||
<td>
|
<td class="action-links">
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
$actions = array();
|
$actions = array();
|
||||||
|
|
|
@ -1385,3 +1385,7 @@ ul.view-switch li.current {
|
||||||
-webkit-border-radius: 8px;
|
-webkit-border-radius: 8px;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.action-links {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue