Changeset 23354
- Timestamp:
- 01/28/2013 10:36:15 PM (12 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/css/colors-classic.css
r23315 r23354 1534 1534 background-color: #fff; 1535 1535 border-color: #ddd; 1536 }1537 1538 .inline-editor .categories .catshow,1539 .inline-editor .categories .cathide {1540 color: #21759b;1541 1536 } 1542 1537 -
trunk/wp-admin/css/colors-fresh.css
r23315 r23354 1425 1425 background-color: #fff; 1426 1426 border-color: #ddd; 1427 }1428 1429 .inline-editor .categories .catshow,1430 .inline-editor .categories .cathide {1431 color: #21759b;1432 1427 } 1433 1428 -
trunk/wp-admin/css/wp-admin-rtl.css
r23014 r23354 817 817 818 818 .inline-edit-row fieldset ul.cat-checklist label, 819 .inline-edit-row .catshow,820 .inline-edit-row .cathide,821 819 .inline-edit-row #bulk-titles div { 822 820 font-family: Tahoma, Arial, sans-serif; … … 2591 2589 .locale-he-il .inline-edit-row fieldset span.checkbox-title, 2592 2590 .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,2595 2591 .locale-he-il .inline-edit-row #bulk-titles div, 2596 2592 .locale-he-il p.help, -
trunk/wp-admin/css/wp-admin.css
r23313 r23354 2880 2880 } 2881 2881 2882 .inline-edit-row .catshow,2883 .inline-edit-row .cathide {2884 cursor: pointer;2885 }2886 2887 2882 ul.cat-checklist { 2888 2883 height: 12em; … … 2910 2905 2911 2906 .inline-edit-row fieldset ul.cat-checklist label, 2912 .inline-edit-row .catshow,2913 .inline-edit-row .cathide,2914 2907 .inline-edit-row #bulk-titles div { 2915 2908 font-family: sans-serif; 2916 2909 font-style: normal; 2917 2910 font-size: 11px; 2918 }2919 2920 table .inline-edit-row fieldset ul.cat-hover {2921 height: auto;2922 max-height: 30em;2923 overflow-y: auto;2924 position: absolute;2925 2911 } 2926 2912 -
trunk/wp-admin/includes/class-wp-posts-list-table.php
r22439 r23354 821 821 <?php foreach ( $hierarchical_taxonomies as $taxonomy ) : ?> 822 822 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> 827 824 <input type="hidden" name="<?php echo ( $taxonomy->name == 'category' ) ? 'post_category[]' : 'tax_input[' . esc_attr( $taxonomy->name ) . '][]'; ?>" value="0" /> 828 825 <ul class="cat-checklist <?php echo esc_attr( $taxonomy->name )?>-checklist"> -
trunk/wp-admin/js/inline-edit-post.js
r22916 r23354 53 53 $('#inline-edit label.inline-edit-tags').clone() 54 54 ); 55 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 55 65 56 $('select[name="_status"] option[value="future"]', bulkRow).remove();
Note: See TracChangeset
for help on using the changeset viewer.