Ticket #19570: 19570-icons.patch
File 19570-icons.patch, 3.2 KB (added by , 12 years ago) |
---|
-
wp-admin/css/wp-admin.css
5288 5288 color: #464646; 5289 5289 } 5290 5290 5291 .nav-tab-icon { 5292 float: left; 5293 display: block; 5294 margin: 4px 4px 0 0; 5295 overflow: hidden; 5296 } 5297 5298 .icon-aside { 5299 background: url('../images/post-formats-icons.png') -64px 0px no-repeat; 5300 width: 15px; 5301 height: 15px; 5302 } 5303 5304 .icon-audio { 5305 background: url('../images/post-formats-icons.png') -23px 0px no-repeat; 5306 width: 17px; 5307 height: 16px; 5308 } 5309 5310 .icon-chat { 5311 background: url('../images/post-formats-icons.png') 0px -20px no-repeat; 5312 width: 16px; 5313 height: 16px; 5314 } 5315 5316 .icon-gallery { 5317 background: url('../images/post-formats-icons.png') 0px -40px no-repeat; 5318 width: 17px; 5319 height: 14px; 5320 } 5321 5322 .icon-image { 5323 background: url('../images/post-formats-icons.png') -44px 0px no-repeat; 5324 width: 16px; 5325 height: 16px; 5326 } 5327 5328 .icon-link { 5329 background: url('../images/post-formats-icons.png') 0px 0px no-repeat; 5330 width: 19px; 5331 height: 16px; 5332 } 5333 5334 .icon-quote { 5335 background: url('../images/post-formats-icons.png') -21px -40px no-repeat; 5336 width: 16px; 5337 height: 14px; 5338 } 5339 5340 .icon-standard { 5341 background: url('../images/post-formats-icons.png') -64px -19px no-repeat; 5342 width: 12px; 5343 height: 16px; 5344 } 5345 5346 .icon-status { 5347 background: url('../images/post-formats-icons.png') -20px -20px no-repeat; 5348 width: 16px; 5349 height: 16px; 5350 } 5351 5352 .icon-video { 5353 background: url('../images/post-formats-icons.png') -44px -20px no-repeat; 5354 width: 15px; 5355 height: 16px; 5356 } 5357 5291 5358 h2.nav-tab-wrapper, h3.nav-tab-wrapper { 5292 5359 border-bottom-width: 1px; 5293 5360 border-bottom-style: solid; -
wp-admin/edit-form-advanced.php
338 338 echo '<h2 class="nav-tab-wrapper post-format-select">'; 339 339 340 340 foreach ( $all_post_formats as $slug => $label ) { 341 $icon = '<div class="nav-tab-icon icon-' . $slug . '"></div>'; 342 341 343 if ( $post_format == $slug ) 342 $class = 'nav-tab nav-tab- active';344 $class = 'nav-tab nav-tab-'. $slug . ' nav-tab-active'; 343 345 else 344 $class = 'nav-tab ';346 $class = 'nav-tab nav-tab-'. $slug; 345 347 346 echo '<a class="' . $class . '" href="?format=' . $slug . '" data-wp-format="' . $slug . '">' . $ label . '</a>';348 echo '<a class="' . $class . '" href="?format=' . $slug . '" data-wp-format="' . $slug . '">' . $icon . $label . '</a>'; 347 349 } 348 350 349 351 echo '</h2>'; -
wp-admin/images/post-formats-icons.png
Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream