Ticket #21019: 21019.3.diff
File 21019.3.diff, 16.9 KB (added by , 12 years ago) |
---|
-
wp-includes/admin-bar.php
341 341 ), 342 342 ) ); 343 343 344 $blue_wp_logo_url = includes_url('images/wpmini-blue.png');345 346 344 foreach ( (array) $wp_admin_bar->user->blogs as $blog ) { 347 345 switch_to_blog( $blog->userblog_id ); 348 346 349 $blavatar = '< img src="' . esc_url($blue_wp_logo_url) . '" alt="' . esc_attr__( 'Blavatar' ) . '" width="16" height="16" class="blavatar"/>';347 $blavatar = '<div title="' . esc_attr__( 'Blavatar' ) . '" class="blavatar"></div>'; 350 348 351 349 $blogname = empty( $blog->blogname ) ? $blog->domain : $blog->blogname; 352 350 $menu_id = 'blog-' . $blog->userblog_id; -
wp-includes/default-widgets.php
778 778 779 779 $title = apply_filters('widget_title', $title, $instance, $this->id_base); 780 780 $url = esc_url(strip_tags($url)); 781 $icon = includes_url('images/rss.png'); 781 // Didn't want to have to add additional theme CSS for retina version of rss.png 782 // Forcing 2x here looks fine on non-retina devices 783 $icon = includes_url('images/rss-2x.png'); 782 784 if ( $title ) 783 785 $title = "<a class='rsswidget' href='$url' title='" . esc_attr__( 'Syndicate this content' ) ."'><img style='border:0' width='14' height='14' src='$icon' alt='RSS' /></a> <a class='rsswidget' href='$link' title='$desc'>$title</a>"; 784 786 -
wp-includes/css/admin-bar-rtl.css
Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: wp-includes/images/rss-2x.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: wp-includes/images/toggle-arrow-2x.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: wp-includes/images/wpmini-blue-2x.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: wp-includes/images/arrow-pointer-blue-2x.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: wp-includes/images/down_arrow-2x.gif ___________________________________________________________________ Added: svn:mime-type + application/octet-stream
127 127 margin-right: 4px 128 128 } 129 129 130 131 130 132 /* 131 133 * My Sites 132 134 */ 133 #wpadminbar .quicklinks li img.blavatar { 135 #wpadminbar .quicklinks li .blavatar { 136 background: url(../images/wpmini-blue.png) no-repeat; 137 height: 16px; 138 width: 16px; 139 display: inline-block; 134 140 margin-right: 0px; 135 141 margin-left: 4px; 136 142 } 137 143 144 @media only screen and (-webkit-min-device-pixel-ratio: 1.5) { 145 #wpadminbar .quicklinks li .blavatar { 146 background: url(../images/wpmini-blue-2x.png) no-repeat; 147 background-size: 16px 16px; 148 } 149 } 150 138 151 /* 139 152 * Search 140 153 */ -
wp-includes/css/admin-bar.css
393 393 /* 394 394 * My Sites 395 395 */ 396 #wpadminbar .quicklinks li img.blavatar { 396 #wpadminbar .quicklinks li .blavatar { 397 background: url(../images/wpmini-blue.png) no-repeat; 398 height: 16px; 399 width: 16px; 400 display: inline-block; 397 401 vertical-align: middle; 398 402 margin: -3px 4px 0 0; 399 403 padding: 0; 400 404 } 401 405 406 @media only screen and (-webkit-min-device-pixel-ratio: 1.5) { 407 #wpadminbar .quicklinks li .blavatar { 408 background: url(../images/wpmini-blue-2x.png) no-repeat; 409 background-size: 16px 16px; 410 } 411 } 412 402 413 /** 403 414 * Search 404 415 */ -
wp-includes/css/wp-pointer.css
94 94 background:url('../images/arrow-pointer-blue.png') 0 0 no-repeat; 95 95 } 96 96 97 @media only screen and (-webkit-min-device-pixel-ratio: 1.5) { 98 .wp-pointer-arrow { 99 background: url('../images/arrow-pointer-blue-2x.png') 0 0 no-repeat; 100 background-size: 30px 60px; 101 } 102 } 103 97 104 .wp-pointer-arrow-inner { 98 105 z-index: 20; 99 106 } -
wp-includes/css/editor.css
265 265 background-repeat: no-repeat; 266 266 } 267 267 268 @media only screen and (-webkit-min-device-pixel-ratio: 1.5) { 269 .wp_themeSkin .mceListBox .mceOpen, 270 .wp_themeSkin .mceListBoxHover .mceOpen, 271 .wp_themeSkin .mceListBoxSelected .mceOpen, 272 .wp_themeSkin table.mceListBoxEnabled .mceOpen { 273 background-image: url("../images/down_arrow-2x.gif"); 274 background-size: 10px 20px; 275 } 276 } 277 268 278 .wp_themeSkin .mceListBoxDisabled .mceText { 269 279 color: gray; 270 280 } … … 924 934 border-left: 0; 925 935 } 926 936 937 @media only screen and (-webkit-min-device-pixel-ratio: 1.5) { 938 .wp_themeSkin .mceSplitButtonEnabled a.mceOpen, 939 .wp_themeSkin .mceSplitButtonSelected a.mceOpen, 940 .wp_themeSkin .mceSplitButtonActive a.mceOpen, 941 .wp_themeSkin .mceSplitButtonEnabled:hover a.mceOpen { 942 background-image: url("../images/down_arrow-2x.gif"); 943 background-size: 10px 20px; 944 } 945 } 946 927 947 .wp_themeSkin .mceSplitButtonActive td { 928 948 -webkit-border-radius: 3px; 929 949 border-radius: 3px; … … 1213 1233 line-height: 23px; 1214 1234 } 1215 1235 1236 @media only screen and (-webkit-min-device-pixel-ratio: 1.5) { 1237 #wp-link .toggle-arrow { 1238 background: transparent url( '../images/toggle-arrow-2x.png' ) top left no-repeat; 1239 background-size: 19px 69px; 1240 } 1241 } 1242 1216 1243 #wp-link .toggle-arrow-active { 1217 1244 background-position: center left; 1218 1245 } -
wp-admin/includes/class-wp-posts-list-table.php
280 280 281 281 $post_status = !empty( $_REQUEST['post_status'] ) ? $_REQUEST['post_status'] : 'all'; 282 282 if ( post_type_supports( $post_type, 'comments' ) && !in_array( $post_status, array( 'pending', 'draft', 'future' ) ) ) 283 $posts_columns['comments'] = '<span class="vers">< img alt="' . esc_attr__( 'Comments' ) . '" src="' . esc_url( admin_url( 'images/comment-grey-bubble.png' ) ) . '" /></span>';283 $posts_columns['comments'] = '<span class="vers"><div title="' . esc_attr__( 'Comments' ) . '" class="comment-grey-bubble"></div></span>'; 284 284 285 285 $posts_columns['date'] = __( 'Date' ); 286 286 -
wp-admin/includes/class-wp-media-list-table.php
156 156 if ( !$this->detached ) { 157 157 $posts_columns['parent'] = _x( 'Attached to', 'column name' ); 158 158 if ( post_type_supports( 'attachment', 'comments' ) ) 159 $posts_columns['comments'] = '<span class="vers">< img alt="' . esc_attr__( 'Comments' ) . '" src="' . esc_url( admin_url( 'images/comment-grey-bubble.png' ) ) . '" /></span>';159 $posts_columns['comments'] = '<span class="vers"><div title="' . esc_attr__( 'Comments' ) . '" class="comment-grey-bubble"></div></span>'; 160 160 } 161 161 /* translators: column name */ 162 162 $posts_columns['date'] = _x( 'Date', 'column name' ); -
wp-admin/css/colors-fresh.css
Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: wp-admin/images/resize-rtl-2x.gif ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: wp-admin/images/resize-2x.gif ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: wp-admin/images/comment-grey-bubble-2x.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: wp-admin/images/sort-2x.gif ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: wp-admin/images/stars-rtl-2x.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: wp-admin/images/stars-2x.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: wp-admin/images/bubble_bg-rtl-2x.gif ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: wp-admin/images/bubble_bg-2x.gif ___________________________________________________________________ Added: svn:mime-type + application/octet-stream
286 286 } 287 287 288 288 .post-com-count { 289 background-image: url(../images/bubble_bg.gif);290 289 color: #fff; 291 290 } 292 291 … … 1820 1819 border-left-color: #99d; 1821 1820 } 1822 1821 1823 .rtl .post-com-count {1824 background-image: url(../images/bubble_bg-rtl.gif);1825 }1826 1827 1822 .rtl #screen-meta-links a.show-settings { 1828 1823 background-position: left 3px; 1829 1824 } -
wp-admin/css/wp-admin-rtl.css
519 519 font-family: Tahoma, Arial, sans-serif; 520 520 } 521 521 522 .post-com-count { 523 background-image: url(../images/bubble_bg-rtl.gif); 524 background-repeat: no-repeat; 525 } 526 527 @media only screen and (-webkit-min-device-pixel-ratio: 1.5) { 528 .post-com-count { 529 background-image: url(../images/bubble_bg-rtl-2x.gif); 530 background-size: 18px 100px; 531 } 532 } 533 522 534 .column-response .post-com-count { 523 535 float: right; 524 536 margin-right: 0; … … 858 870 cursor: sw-resize; 859 871 } 860 872 873 @media only screen and (-webkit-min-device-pixel-ratio: 1.5) { 874 #content-resize-handle, #post-body .wp_themeSkin .mceStatusbar a.mceResize { 875 background: transparent url(../images/resize-rtl-2x.gif) no-repeat scroll right bottom; 876 background-size: 11px 11px; 877 } 878 } 879 861 880 .curtime #timestamp { 862 881 background-position: right top; 863 882 padding-left: 0; … … 2143 2162 2144 2163 /* Star ratings */ 2145 2164 div.star-holder { 2146 background: url('../images/stars-rtl.png ?ver=20120506.png') repeat-x bottom right;2165 background: url('../images/stars-rtl.png') repeat-x bottom right; 2147 2166 } 2148 2167 div.star-holder .star-rating { 2149 background: url('../images/stars-rtl.png ?ver=20120506.png') repeat-x top right;2168 background: url('../images/stars-rtl.png') repeat-x top right; 2150 2169 float: right; 2151 2170 } 2152 2171 2172 @media only screen and (-webkit-min-device-pixel-ratio: 1.5) { 2173 div.star-holder { 2174 background: url('../images/stars-rtl-2x.png') repeat-x bottom right; 2175 background-size: 21px 37px; 2176 } 2177 div.star-holder .star-rating { 2178 background: url('../images/stars-rtl-2x.png') repeat-x top right; 2179 background-size: 21px 37px; 2180 } 2181 } 2182 2153 2183 #plugin-information ul#sidemenu { 2154 2184 left: auto; 2155 2185 right: 0; -
wp-admin/css/wp-admin.css
1821 1821 } 1822 1822 1823 1823 .post-com-count { 1824 background-image: url(../images/bubble_bg.gif); 1824 1825 height: 1.3em; 1825 1826 line-height: 1.1em; 1826 1827 display: block; … … 1831 1832 background-repeat: no-repeat; 1832 1833 } 1833 1834 1835 @media only screen and (-webkit-min-device-pixel-ratio: 1.5) { 1836 .post-com-count { 1837 background-image: url(../images/bubble_bg-2x.gif); 1838 background-size: 18px 100px; 1839 } 1840 } 1841 1834 1842 .post-com-count span { 1835 1843 font-size: 11px; 1836 1844 font-weight: bold; … … 1865 1873 padding: 4px 8px; 1866 1874 } 1867 1875 1876 th .comment-grey-bubble { 1877 background-image: url(../images/comment-grey-bubble.png); 1878 background-repeat: no-repeat; 1879 height: 12px; 1880 width: 12px; 1881 } 1868 1882 1883 @media only screen and (-webkit-min-device-pixel-ratio: 1.5) { 1884 th .comment-grey-bubble { 1885 background-image: url(../images/comment-grey-bubble-2x.png); 1886 background-size: 12px 12px; 1887 } 1888 } 1889 1869 1890 /*------------------------------------------------------------------------------ 1870 1891 8.0 - Layout Blocks 1871 1892 ------------------------------------------------------------------------------*/ … … 2556 2577 background-repeat: no-repeat; 2557 2578 } 2558 2579 2580 @media only screen and (-webkit-min-device-pixel-ratio: 1.5) { 2581 .sorting-indicator { 2582 background-image: url(../images/sort-2x.gif); 2583 background-size: 14px 4px; 2584 } 2585 } 2586 2559 2587 .fixed .column-comments .sorting-indicator { 2560 2588 margin-top: 3px; 2561 2589 } … … 3311 3339 height: 19px; 3312 3340 } 3313 3341 3342 @media only screen and (-webkit-min-device-pixel-ratio: 1.5) { 3343 #content-resize-handle, #post-body .wp_themeSkin .mceStatusbar a.mceResize { 3344 background: transparent url(../images/resize-2x.gif) no-repeat scroll right bottom; 3345 background-size: 11px 11px; 3346 } 3347 } 3348 3314 3349 .press-this #content-resize-handle { 3315 3350 bottom: 2px; 3316 3351 } … … 7384 7419 position: relative; 7385 7420 height: 17px; 7386 7421 width: 100px; 7387 background: url('../images/stars.png ?ver=20120307') repeat-x bottom left;7422 background: url('../images/stars.png') repeat-x bottom left; 7388 7423 } 7389 7424 7390 7425 div.star-holder .star-rating { 7391 background: url('../images/stars.png ?ver=20120307') repeat-x top left;7426 background: url('../images/stars.png') repeat-x top left; 7392 7427 height: 17px; 7393 7428 float: left; 7394 7429 } 7395 7430 7431 @media only screen and (-webkit-min-device-pixel-ratio: 1.5) { 7432 div.star-holder { 7433 background: url('../images/stars-2x.png') repeat-x bottom left; 7434 background-size: 21px 37px; 7435 } 7436 div.star-holder .star-rating { 7437 background: url('../images/stars-2x.png') repeat-x top left; 7438 background-size: 21px 37px; 7439 } 7440 } 7441 7396 7442 div.action-links { 7397 7443 font-weight: normal; 7398 7444 margin: 6px 0 0; -
wp-admin/css/colors-classic.css
290 290 } 291 291 292 292 .post-com-count { 293 background-image: url(../images/bubble_bg.gif);294 293 color: #fff; 295 294 } 296 295 … … 1941 1940 border-left-color: #99d; 1942 1941 } 1943 1942 1944 .rtl .post-com-count {1945 background-image: url(../images/bubble_bg-rtl.gif);1946 }1947 1948 1943 .rtl #screen-meta-links a.show-settings { 1949 1944 background-position: left 3px; 1950 1945 }