Fix comment bubble alignment. Props azaozz. fixes #6115
git-svn-id: http://svn.automattic.com/wordpress/trunk@7207 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
331efc3e25
commit
26551b27db
|
@ -156,7 +156,7 @@ ul.widget-control-list .sorthelper {
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-com-count {
|
.post-com-count {
|
||||||
background-image: url(../images/comment-stalk.gif);
|
background-image: url(../images/bubble_bg.gif);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 206 B |
|
@ -288,7 +288,7 @@ function wp_manage_posts_columns() {
|
||||||
$posts_columns['categories'] = __('Categories');
|
$posts_columns['categories'] = __('Categories');
|
||||||
$posts_columns['tags'] = __('Tags');
|
$posts_columns['tags'] = __('Tags');
|
||||||
if ( !in_array($_GET['post_status'], array('pending', 'draft', 'future')) )
|
if ( !in_array($_GET['post_status'], array('pending', 'draft', 'future')) )
|
||||||
$posts_columns['comments'] = '<img class="comment-column" alt="Comments" src="images/comment-grey-bubble.png" /></div>';
|
$posts_columns['comments'] = '<div class="vers"><img alt="Comments" src="images/comment-grey-bubble.png" /></div>';
|
||||||
$posts_columns['status'] = __('Status');
|
$posts_columns['status'] = __('Status');
|
||||||
$posts_columns = apply_filters('manage_posts_columns', $posts_columns);
|
$posts_columns = apply_filters('manage_posts_columns', $posts_columns);
|
||||||
|
|
||||||
|
@ -322,7 +322,7 @@ function wp_manage_pages_columns() {
|
||||||
$posts_columns['title'] = __('Title');
|
$posts_columns['title'] = __('Title');
|
||||||
$posts_columns['author'] = __('Author');
|
$posts_columns['author'] = __('Author');
|
||||||
if ( !in_array($_GET['post_status'], array('pending', 'draft', 'future')) )
|
if ( !in_array($_GET['post_status'], array('pending', 'draft', 'future')) )
|
||||||
$posts_columns['comments'] = '<div style="text-align: center"><img alt="" src="images/comment-grey-bubble.png" /></div>';
|
$posts_columns['comments'] = '<div class="vers"><img alt="" src="images/comment-grey-bubble.png" /></div>';
|
||||||
$posts_columns['status'] = __('Status');
|
$posts_columns['status'] = __('Status');
|
||||||
$posts_columns = apply_filters('manage_pages_columns', $posts_columns);
|
$posts_columns = apply_filters('manage_pages_columns', $posts_columns);
|
||||||
|
|
||||||
|
|
|
@ -454,7 +454,7 @@ p.pagenav {
|
||||||
}
|
}
|
||||||
|
|
||||||
.comment-column {
|
.comment-column {
|
||||||
margin-left: -5px;
|
margin-left: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tablenav a.button-secondary {
|
.tablenav a.button-secondary {
|
||||||
|
@ -686,24 +686,22 @@ a.view-comment-post-link {
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-com-count {
|
.post-com-count {
|
||||||
background-repeat: no-repeat;
|
height: 1.3em;
|
||||||
background-position: -240px bottom;
|
|
||||||
height: 0.9em;
|
|
||||||
margin-top: 7px;
|
|
||||||
width: 1em;
|
|
||||||
display: block;
|
display: block;
|
||||||
position: absolute;
|
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
overflow: hidden;
|
||||||
|
padding: 0 0 5px;
|
||||||
|
cursor: pointer;
|
||||||
|
background-position: center -80px;
|
||||||
|
background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-com-count span {
|
.post-com-count span {
|
||||||
top: -0.7em;
|
|
||||||
right: 0;
|
|
||||||
position: absolute;
|
|
||||||
display: block;
|
|
||||||
height: 1.3em;
|
height: 1.3em;
|
||||||
line-height: 1.3em;
|
line-height: 1.3em;
|
||||||
padding: 0 0.6em;
|
padding: 0 0.6em;
|
||||||
|
background-color: #bbb;
|
||||||
|
cursor: pointer;
|
||||||
-moz-border-radius: 3px;
|
-moz-border-radius: 3px;
|
||||||
-khtml-border-radius: 3px;
|
-khtml-border-radius: 3px;
|
||||||
-webkit-border-radius: 3px;
|
-webkit-border-radius: 3px;
|
||||||
|
@ -711,11 +709,11 @@ a.view-comment-post-link {
|
||||||
}
|
}
|
||||||
|
|
||||||
strong .post-com-count {
|
strong .post-com-count {
|
||||||
background-position: -160px bottom;
|
background-position: center -55px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-com-count:hover {
|
.post-com-count:hover {
|
||||||
background-position: 0 bottom;
|
background-position: center -3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#adminmenu li a:hover #awaiting-mod {
|
#adminmenu li a:hover #awaiting-mod {
|
||||||
|
|
Loading…
Reference in New Issue