Ticket #6115: bubble.patch
| File bubble.patch, 3.2 KB (added by azaozz, 5 years ago) |
|---|
-
wp-admin/css/colors-fresh.css
156 156 } 157 157 158 158 .post-com-count { 159 background-image: url(../images/ comment-stalk.gif);159 background-image: url(../images/bubble_bg.gif); 160 160 color: #fff; 161 161 } 162 162 -
wp-admin/includes/template.php
Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: wp-admin\images\bubble_bg.gif ___________________________________________________________________ Name: svn:mime-type + application/octet-stream
288 288 $posts_columns['categories'] = __('Categories'); 289 289 $posts_columns['tags'] = __('Tags'); 290 290 if ( !in_array($_GET['post_status'], array('pending', 'draft', 'future')) ) 291 $posts_columns['comments'] = '< img class="comment-column"alt="Comments" src="images/comment-grey-bubble.png" /></div>';291 $posts_columns['comments'] = '<div class="vers"><img alt="Comments" src="images/comment-grey-bubble.png" /></div>'; 292 292 $posts_columns['status'] = __('Status'); 293 293 $posts_columns = apply_filters('manage_posts_columns', $posts_columns); 294 294 … … 322 322 $posts_columns['title'] = __('Title'); 323 323 $posts_columns['author'] = __('Author'); 324 324 if ( !in_array($_GET['post_status'], array('pending', 'draft', 'future')) ) 325 $posts_columns['comments'] = '<div style="text-align: center"><img alt="" src="images/comment-grey-bubble.png" /></div>';325 $posts_columns['comments'] = '<div class="vers"><img alt="" src="images/comment-grey-bubble.png" /></div>'; 326 326 $posts_columns['status'] = __('Status'); 327 327 $posts_columns = apply_filters('manage_pages_columns', $posts_columns); 328 328 -
wp-admin/wp-admin.css
452 452 } 453 453 454 454 .comment-column { 455 margin-left: -5px;455 margin-left: 5px; 456 456 } 457 457 458 458 .tablenav a.button-secondary { … … 678 678 } 679 679 680 680 .post-com-count { 681 background-repeat: no-repeat; 682 background-position: -240px bottom; 683 height: 0.9em; 684 margin-top: 7px; 685 width: 1em; 681 height: 1.3em; 686 682 display: block; 687 position: absolute;688 683 text-decoration: none; 684 overflow: hidden; 685 padding: 0 0 5px; 686 cursor: pointer; 687 background-position: center -80px; 688 background-repeat: no-repeat; 689 689 } 690 690 691 691 .post-com-count span { 692 top: -0.7em;693 right: 0;694 position: absolute;695 display: block;696 692 height: 1.3em; 697 693 line-height: 1.3em; 698 694 padding: 0 0.6em; 695 background-color: #bbb; 696 cursor: pointer; 699 697 -moz-border-radius: 3px; 700 698 -khtml-border-radius: 3px; 701 699 -webkit-border-radius: 3px; … … 703 701 } 704 702 705 703 strong .post-com-count { 706 background-position: -160px bottom;704 background-position: center -55px; 707 705 } 708 706 709 707 .post-com-count:hover { 710 background-position: 0 bottom;708 background-position: center -3px; 711 709 } 712 710 713 711 #adminmenu li a:hover #awaiting-mod {
