Ticket #32017: 32017.diff
File 32017.diff, 4.5 KB (added by , 10 years ago) |
---|
-
wp-admin/css/common.css
699 699 ------------------------------------------------------------------------------*/ 700 700 701 701 .widget .widget-top, 702 .postbox .h ndle,703 .stuffbox .h ndle,702 .postbox .handle, 703 .stuffbox .handle, 704 704 .control-section .accordion-section-title, 705 705 .sidebar-name, 706 706 #nav-menu-header, … … 720 720 color: #23282d; 721 721 } 722 722 723 .postbox .h ndle,724 .stuffbox .h ndle {723 .postbox .handle, 724 .stuffbox .handle { 725 725 border-bottom: 1px solid #eee; 726 726 } 727 727 … … 1781 1781 } 1782 1782 1783 1783 .js .widget .widget-top, 1784 .js .postbox .h ndle {1784 .js .postbox .handle { 1785 1785 cursor: move; 1786 1786 } 1787 1787 1788 .h ndle a {1788 .handle a { 1789 1789 font-size: 11px; 1790 1790 font-weight: normal; 1791 1791 } … … 1813 1813 } 1814 1814 1815 1815 /* user-select is not a part of the CSS standard - may change behavior in the future */ 1816 .postbox .h ndle,1817 .stuffbox .h ndle {1816 .postbox .handle, 1817 .stuffbox .handle { 1818 1818 -webkit-user-select: none; 1819 1819 -moz-user-select: none; 1820 1820 -ms-user-select: none; -
wp-admin/css/dashboard.css
972 972 973 973 /* Make the browser nags easier to read with Open Sans */ 974 974 975 #dashboard_browser_nag h3.h ndle {975 #dashboard_browser_nag h3.handle { 976 976 border: none; 977 977 font-weight: 600; 978 978 font-size: 20px; -
wp-admin/css/ie.css
260 260 border: 1px solid #dfdfdf; 261 261 } 262 262 263 #wpbody-content .postbox .h ndle {263 #wpbody-content .postbox .handle { 264 264 margin-bottom: -1px; 265 265 } 266 266 -
wp-admin/edit-form-comment.php
71 71 72 72 <div id="postbox-container-1" class="postbox-container"> 73 73 <div id="submitdiv" class="stuffbox" > 74 <h3><span class="h ndle"><?php _e('Status') ?></span></h3>74 <h3><span class="handle"><?php _e('Status') ?></span></h3> 75 75 <div class="inside"> 76 76 <div class="submitbox" id="submitcomment"> 77 77 <div id="minor-publishing"> -
wp-admin/includes/template.php
1069 1069 echo '<div id="' . $box['id'] . '" class="postbox ' . postbox_classes($box['id'], $page) . $hidden_class . '" ' . '>' . "\n"; 1070 1070 if ( 'dashboard_browser_nag' != $box['id'] ) 1071 1071 echo '<div class="handlediv" title="' . esc_attr__('Click to toggle') . '"><br /></div>'; 1072 echo "<h3 class='h ndle'><span>{$box['title']}</span></h3>\n";1072 echo "<h3 class='handle'><span>{$box['title']}</span></h3>\n"; 1073 1073 echo '<div class="inside">' . "\n"; 1074 1074 call_user_func($box['callback'], $object, $box); 1075 1075 echo "</div>\n"; … … 1167 1167 } 1168 1168 ?> 1169 1169 <li class="control-section accordion-section <?php echo $hidden_class; ?> <?php echo $open_class; ?> <?php echo esc_attr( $box['id'] ); ?>" id="<?php echo esc_attr( $box['id'] ); ?>"> 1170 <h3 class="accordion-section-title h ndle" tabindex="0">1170 <h3 class="accordion-section-title handle" tabindex="0"> 1171 1171 <?php echo esc_html( $box['title'] ); ?> 1172 1172 <span class="screen-reader-text"><?php _e( 'Press return or enter to expand' ); ?></span> 1173 1173 </h3> -
wp-admin/js/postbox.js
11 11 12 12 self.init(page, args); 13 13 14 $('.postbox .h ndle, .postbox .handlediv').bind('click.postboxes', function() {14 $('.postbox .handle, .postbox .handlediv').bind('click.postboxes', function() { 15 15 var p = $(this).parent('.postbox'), id = p.attr('id'); 16 16 17 17 if ( 'dashboard_browser_nag' == id ) … … 32 32 $document.trigger( 'postbox-toggled', p ); 33 33 }); 34 34 35 $('.postbox .h ndle a').click( function(e) {35 $('.postbox .handle a').click( function(e) { 36 36 e.stopPropagation(); 37 37 }); 38 38 … … 79 79 placeholder: 'sortable-placeholder', 80 80 connectWith: '.meta-box-sortables', 81 81 items: '.postbox', 82 handle: '.h ndle',82 handle: '.handle', 83 83 cursor: 'move', 84 84 delay: ( isMobile ? 200 : 0 ), 85 85 distance: 2,