Ticket #28411: 28411.patch
File 28411.patch, 2.4 KB (added by , 10 years ago) |
---|
-
src/wp-admin/css/edit.css
394 394 height: auto !important; 395 395 } 396 396 397 # misc-publishing-actions label[for="post_status"]:before,397 #post-body .misc-pub-post-status:before, 398 398 #post-body #visibility:before, 399 399 .curtime #timestamp:before, 400 400 #post-body .misc-pub-revisions:before, … … 402 402 color: #888; 403 403 } 404 404 405 #post-body .misc-pub-post-status:before, 405 406 #post-body #visibility:before, 406 407 .curtime #timestamp:before, 407 408 #post-body .misc-pub-revisions:before { 408 409 font: normal 20px/1 'dashicons'; 409 410 speak: none; 410 411 display: inline-block; 411 padding: 0 2px 0 0; 412 top: 0; 413 left: -1px; 414 position: relative; 412 padding-right: 2px; 415 413 vertical-align: top; 416 414 -webkit-font-smoothing: antialiased; 417 415 -moz-osx-font-smoothing: grayscale; 418 text-decoration: none !important; 416 } 417 418 #post-body .misc-pub-post-status:before { 419 content: '\f173'; 419 420 } 420 421 421 422 #post-body #visibility:before { … … 424 425 425 426 .curtime #timestamp:before { 426 427 content: '\f145'; 427 top: -1px;428 428 } 429 429 430 430 #post-body .misc-pub-revisions:before { -
src/wp-admin/css/forms.css
405 405 vertical-align: baseline; 406 406 } 407 407 408 #misc-publishing-actions label[for="post_status"]:before {409 content: '\f173';410 display: inline-block;411 font: normal 20px/1 'dashicons';412 speak: none;413 left: -1px;414 padding: 0 5px 0 0;415 position: relative;416 top: 0;417 text-decoration: none !important;418 vertical-align: top;419 -webkit-font-smoothing: antialiased;420 -moz-osx-font-smoothing: grayscale;421 }422 423 408 #pass-strength-result { 424 409 background-color: #eee; 425 410 border: 1px solid #ddd; -
src/wp-admin/includes/meta-boxes.php
62 62 63 63 <div id="misc-publishing-actions"> 64 64 65 <div class="misc-pub-section misc-pub-post-status"><label for="post_status"><?php _e('Status:') ?></label> 65 <div class="misc-pub-section misc-pub-post-status"> 66 <?php _e( 'Status:' ); ?> 66 67 <span id="post-status-display"> 67 68 <?php 68 69 switch ( $post->post_status ) {