Make WordPress Core

Ticket #23006: 23006.diff

File 23006.diff, 4.1 KB (added by helen, 14 years ago)
  • wp-admin/includes/class-wp-posts-list-table.php

     
    820820
    821821        <?php foreach ( $hierarchical_taxonomies as $taxonomy ) : ?>
    822822
    823                         <span class="title inline-edit-categories-label"><?php echo esc_html( $taxonomy->labels->name ) ?>
    824                                 <span class="catshow"><?php _e( '[more]' ); ?></span>
    825                                 <span class="cathide" style="display:none;"><?php _e( '[less]' ); ?></span>
    826                         </span>
     823                        <span class="title inline-edit-categories-label"><?php echo esc_html( $taxonomy->labels->name ) ?></span>
    827824                        <input type="hidden" name="<?php echo ( $taxonomy->name == 'category' ) ? 'post_category[]' : 'tax_input[' . esc_attr( $taxonomy->name ) . '][]'; ?>" value="0" />
    828825                        <ul class="cat-checklist <?php echo esc_attr( $taxonomy->name )?>-checklist">
    829826                                <?php wp_terms_checklist( null, array( 'taxonomy' => $taxonomy->name ) ) ?>
  • wp-admin/js/inline-edit-post.js

     
    5353                        $('#inline-edit label.inline-edit-tags').clone()
    5454                );
    5555
    56                 // hiearchical taxonomies expandable?
    57                 $('span.catshow').click(function(){
    58                         $(this).hide().next().show().parent().next().addClass("cat-hover");
    59                 });
    60 
    61                 $('span.cathide').click(function(){
    62                         $(this).hide().prev().show().parent().next().removeClass("cat-hover");
    63                 });
    64 
    6556                $('select[name="_status"] option[value="future"]', bulkRow).remove();
    6657
    6758                $('#doaction, #doaction2').click(function(e){
  • wp-admin/css/colors-fresh.css

     
    14291429        border-color: #ddd;
    14301430}
    14311431
    1432 .inline-editor .categories .catshow,
    1433 .inline-editor .categories .cathide {
    1434         color: #21759b;
    1435 }
    1436 
    14371432.inline-editor .quick-edit-save {
    14381433        background-color: #f1f1f1;
    14391434}
  • wp-admin/css/wp-admin-rtl.css

     
    816816}
    817817
    818818.inline-edit-row fieldset ul.cat-checklist label,
    819 .inline-edit-row .catshow,
    820 .inline-edit-row .cathide,
    821819.inline-edit-row #bulk-titles div {
    822820        font-family: Tahoma, Arial, sans-serif;
    823821}
     
    25902588.locale-he-il .inline-edit-row fieldset span.title,
    25912589.locale-he-il .inline-edit-row fieldset span.checkbox-title,
    25922590.locale-he-il .inline-edit-row fieldset ul.cat-checklist label,
    2593 .locale-he-il .inline-edit-row .catshow,
    2594 .locale-he-il .inline-edit-row .cathide,
    25952591.locale-he-il .inline-edit-row #bulk-titles div,
    25962592.locale-he-il p.help,
    25972593.locale-he-il p.description,
  • wp-admin/css/wp-admin.css

     
    28732873        width: 8em;
    28742874}
    28752875
    2876 .inline-edit-row .catshow,
    2877 .inline-edit-row .cathide {
    2878         cursor: pointer;
    2879 }
    2880 
    28812876ul.cat-checklist {
    28822877        height: 12em;
    28832878        border-style: solid;
     
    29032898}
    29042899
    29052900.inline-edit-row fieldset ul.cat-checklist label,
    2906 .inline-edit-row .catshow,
    2907 .inline-edit-row .cathide,
    29082901.inline-edit-row #bulk-titles div {
    29092902        font-family: sans-serif;
    29102903        font-style: normal;
    29112904        font-size: 11px;
    29122905}
    29132906
    2914 table .inline-edit-row fieldset ul.cat-hover {
    2915         height: auto;
    2916         max-height: 30em;
    2917         overflow-y: auto;
    2918         position: absolute;
    2919 }
    2920 
    29212907.inline-edit-row fieldset label input.inline-edit-menu-order-input {
    29222908        width: 3em;
    29232909}
  • wp-admin/css/colors-classic.css

     
    15351535        border-color: #ddd;
    15361536}
    15371537
    1538 .inline-editor .categories .catshow,
    1539 .inline-editor .categories .cathide {
    1540         color: #21759b;
    1541 }
    1542 
    15431538.inline-editor .quick-edit-save {
    15441539        background-color: #f1f1f1;
    15451540}