diff --git a/src/js/_enqueues/admin/postbox.js b/src/js/_enqueues/admin/postbox.js
index a91b536..156b937 100644
a
|
b
|
var postboxes; |
100 | 100 | * @returns {void} |
101 | 101 | */ |
102 | 102 | add_postbox_toggles : function (page, args) { |
103 | | var $handles = $( '.postbox .hndle, .postbox .handlediv' ); |
| 103 | var $handles = $( '.postbox .hndle, .postbox .handle, .postbox .handlediv' ); |
104 | 104 | |
105 | 105 | this.page = page; |
106 | 106 | this.init( page, args ); |
… |
… |
var postboxes; |
110 | 110 | /** |
111 | 111 | * @since 2.7.0 |
112 | 112 | */ |
113 | | $('.postbox .hndle a').click( function(e) { |
| 113 | $('.postbox .hndle a, .postbox .handle a').click( function(e) { |
114 | 114 | e.stopPropagation(); |
115 | 115 | }); |
116 | 116 | |
… |
… |
var postboxes; |
211 | 211 | placeholder: 'sortable-placeholder', |
212 | 212 | connectWith: '.meta-box-sortables', |
213 | 213 | items: '.postbox', |
214 | | handle: '.hndle', |
| 214 | handle: '.hndle, .handle', |
215 | 215 | cursor: 'move', |
216 | 216 | delay: ( isMobile ? 200 : 0 ), |
217 | 217 | distance: 2, |
diff --git a/src/wp-admin/css/common.css b/src/wp-admin/css/common.css
index cf9c7ff..1c5c94e 100644
a
|
b
|
img.emoji { |
725 | 725 | .widget .widget-top, |
726 | 726 | .postbox .hndle, |
727 | 727 | .stuffbox .hndle, |
| 728 | .postbox .handle, |
| 729 | .stuffbox .handle, |
728 | 730 | .control-section .accordion-section-title, |
729 | 731 | .sidebar-name, |
730 | 732 | #nav-menu-header, |
… |
… |
img.emoji { |
747 | 749 | } |
748 | 750 | |
749 | 751 | .postbox .hndle, |
750 | | .stuffbox .hndle { |
| 752 | .stuffbox .hndle, |
| 753 | .postbox .handle, |
| 754 | .stuffbox .handle { |
751 | 755 | border-bottom: 1px solid #eee; |
752 | 756 | } |
753 | 757 | |
… |
… |
html.wp-toolbar { |
2011 | 2015 | } |
2012 | 2016 | |
2013 | 2017 | .js .widget .widget-top, |
2014 | | .js .postbox .hndle { |
| 2018 | .js .postbox .hndle, |
| 2019 | .js .postbox .handle { |
2015 | 2020 | cursor: move; |
2016 | 2021 | } |
2017 | 2022 | |
2018 | | .hndle a { |
| 2023 | .hndle a, |
| 2024 | .handle a { |
2019 | 2025 | font-size: 11px; |
2020 | 2026 | font-weight: 400; |
2021 | 2027 | } |
… |
… |
html.wp-toolbar { |
2050 | 2056 | |
2051 | 2057 | /* user-select is not a part of the CSS standard - may change behavior in the future */ |
2052 | 2058 | .postbox .hndle, |
2053 | | .stuffbox .hndle { |
| 2059 | .stuffbox .hndle, |
| 2060 | .postbox .handle, |
| 2061 | .stuffbox .handle { |
2054 | 2062 | -webkit-user-select: none; |
2055 | 2063 | -moz-user-select: none; |
2056 | 2064 | -ms-user-select: none; |
… |
… |
h1.nav-tab-wrapper, /* Back-compat for pre-4.4 */ |
2250 | 2258 | .metabox-holder .stuffbox > h3, /* Back-compat for pre-4.4 */ |
2251 | 2259 | .metabox-holder .postbox > h3, /* Back-compat for pre-4.4 */ |
2252 | 2260 | .metabox-holder h3.hndle, /* Back-compat for pre-4.4 */ |
2253 | | .metabox-holder h2.hndle { |
| 2261 | .metabox-holder h2.hndle, |
| 2262 | .metabox-holder h3.handle, |
| 2263 | .metabox-holder h2.handle { |
2254 | 2264 | font-size: 14px; |
2255 | 2265 | padding: 8px 12px; |
2256 | 2266 | margin: 0; |
… |
… |
img { |
3757 | 3767 | } |
3758 | 3768 | |
3759 | 3769 | .metabox-holder h3.hndle, /* Back-compat for pre-4.4 */ |
| 3770 | .metabox-holder h3.handle, |
3760 | 3771 | .metabox-holder .stuffbox > h3, /* Back-compat for pre-4.4 */ |
3761 | 3772 | .metabox-holder .postbox > h3, /* Back-compat for pre-4.4 */ |
3762 | 3773 | .metabox-holder h2 { |
diff --git a/src/wp-admin/css/dashboard.css b/src/wp-admin/css/dashboard.css
index 19c6bf2..08b020d 100644
a
|
b
|
form.initial-form.quickpress-open input#title { |
898 | 898 | } |
899 | 899 | |
900 | 900 | .hndle:hover .edit-box, |
| 901 | .handle:hover .edit-box, |
901 | 902 | .edit-box:focus { |
902 | 903 | opacity: 1; |
903 | 904 | } |
… |
… |
form.initial-form.quickpress-open input#title { |
930 | 931 | text-decoration: underline; |
931 | 932 | } |
932 | 933 | |
933 | | #dashboard-widgets .hndle .postbox-title-action { |
| 934 | #dashboard-widgets .hndle .postbox-title-action, |
| 935 | #dashboard-widgets .handle .postbox-title-action { |
934 | 936 | float: right; |
935 | 937 | line-height: 1.2; |
936 | 938 | } |
… |
… |
a.rsswidget { |
1099 | 1101 | color: #fff; |
1100 | 1102 | } |
1101 | 1103 | |
1102 | | #dashboard_browser_nag h2.hndle { |
| 1104 | #dashboard_browser_nag h2.hndle, |
| 1105 | #dashboard_browser_nag h2.handle { |
1103 | 1106 | border: none; |
1104 | 1107 | font-weight: 600; |
1105 | 1108 | font-size: 20px; |
diff --git a/src/wp-admin/css/edit.css b/src/wp-admin/css/edit.css
index 00c68e2..026a291 100644
a
|
b
|
span.wp-media-buttons-icon:before { |
599 | 599 | } |
600 | 600 | |
601 | 601 | #poststuff h3.hndle, /* Back-compat for pre-4.4 */ |
| 602 | #poststuff h3.handle, |
602 | 603 | #poststuff .stuffbox > h3, /* Back-compat for pre-4.4 */ |
603 | 604 | #poststuff h2 { |
604 | 605 | font-size: 14px; |
… |
… |
table.links-table { |
1440 | 1441 | } |
1441 | 1442 | |
1442 | 1443 | #poststuff h3.hndle, /* Back-compat for pre-4.4 */ |
| 1444 | #poststuff h3.handle, |
1443 | 1445 | #poststuff .stuffbox > h3, /* Back-compat for pre-4.4 */ |
1444 | 1446 | #poststuff h2 { |
1445 | 1447 | padding: 12px; |
diff --git a/src/wp-admin/css/ie.css b/src/wp-admin/css/ie.css
index ceb02a8..afa9748 100644
a
|
b
|
table.fixed td { |
246 | 246 | border: 1px solid #ddd; |
247 | 247 | } |
248 | 248 | |
249 | | #wpbody-content .postbox .hndle { |
| 249 | #wpbody-content .postbox .hndle, |
| 250 | #wpbody-content .postbox .handle { |
250 | 251 | margin-bottom: -1px; |
251 | 252 | } |
252 | 253 | |
diff --git a/src/wp-admin/includes/template.php b/src/wp-admin/includes/template.php
index b89a899..1e4a19b 100644
a
|
b
|
function do_meta_boxes( $screen, $context, $object ) { |
1140 | 1140 | echo '<span class="toggle-indicator" aria-hidden="true"></span>'; |
1141 | 1141 | echo '</button>'; |
1142 | 1142 | } |
1143 | | echo '<h2 class="hndle">'; |
| 1143 | echo '<h2 class="handle">'; |
1144 | 1144 | if ( 'dashboard_php_nag' === $box['id'] ) { |
1145 | 1145 | echo '<span aria-hidden="true" class="dashicons dashicons-warning"></span>'; |
1146 | 1146 | echo '<span class="screen-reader-text">' . __( 'Warning:' ) . ' </span>'; |
… |
… |
function do_accordion_sections( $screen, $context, $object ) { |
1268 | 1268 | } |
1269 | 1269 | ?> |
1270 | 1270 | <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'] ); ?>"> |
1271 | | <h3 class="accordion-section-title hndle" tabindex="0"> |
| 1271 | <h3 class="accordion-section-title handle" tabindex="0"> |
1272 | 1272 | <?php echo esc_html( $box['title'] ); ?> |
1273 | 1273 | <span class="screen-reader-text"><?php _e( 'Press return or enter to open this section' ); ?></span> |
1274 | 1274 | </h3> |