diff --git a/src/js/_enqueues/admin/postbox.js b/src/js/_enqueues/admin/postbox.js
index a91b536..defcb98 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 .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 .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: '.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..ee153eb 100644
a
|
b
|
img.emoji { |
723 | 723 | ------------------------------------------------------------------------------*/ |
724 | 724 | |
725 | 725 | .widget .widget-top, |
726 | | .postbox .hndle, |
727 | | .stuffbox .hndle, |
| 726 | .postbox .handle, |
| 727 | .stuffbox .handle, |
728 | 728 | .control-section .accordion-section-title, |
729 | 729 | .sidebar-name, |
730 | 730 | #nav-menu-header, |
… |
… |
img.emoji { |
746 | 746 | color: #23282d; |
747 | 747 | } |
748 | 748 | |
749 | | .postbox .hndle, |
750 | | .stuffbox .hndle { |
| 749 | .postbox .handle, |
| 750 | .stuffbox .handle { |
751 | 751 | border-bottom: 1px solid #eee; |
752 | 752 | } |
753 | 753 | |
… |
… |
html.wp-toolbar { |
2011 | 2011 | } |
2012 | 2012 | |
2013 | 2013 | .js .widget .widget-top, |
2014 | | .js .postbox .hndle { |
| 2014 | .js .postbox .handle { |
2015 | 2015 | cursor: move; |
2016 | 2016 | } |
2017 | 2017 | |
2018 | | .hndle a { |
| 2018 | .handle a { |
2019 | 2019 | font-size: 11px; |
2020 | 2020 | font-weight: 400; |
2021 | 2021 | } |
… |
… |
html.wp-toolbar { |
2049 | 2049 | } |
2050 | 2050 | |
2051 | 2051 | /* user-select is not a part of the CSS standard - may change behavior in the future */ |
2052 | | .postbox .hndle, |
2053 | | .stuffbox .hndle { |
| 2052 | .postbox .handle, |
| 2053 | .stuffbox .handle { |
2054 | 2054 | -webkit-user-select: none; |
2055 | 2055 | -moz-user-select: none; |
2056 | 2056 | -ms-user-select: none; |
… |
… |
h1.nav-tab-wrapper, /* Back-compat for pre-4.4 */ |
2249 | 2249 | |
2250 | 2250 | .metabox-holder .stuffbox > h3, /* Back-compat for pre-4.4 */ |
2251 | 2251 | .metabox-holder .postbox > h3, /* Back-compat for pre-4.4 */ |
2252 | | .metabox-holder h3.hndle, /* Back-compat for pre-4.4 */ |
2253 | | .metabox-holder h2.hndle { |
| 2252 | .metabox-holder h3.handle, /* Back-compat for pre-4.4 */ |
| 2253 | .metabox-holder h2.handle { |
2254 | 2254 | font-size: 14px; |
2255 | 2255 | padding: 8px 12px; |
2256 | 2256 | margin: 0; |
… |
… |
img { |
3756 | 3756 | font-size: 14px; |
3757 | 3757 | } |
3758 | 3758 | |
3759 | | .metabox-holder h3.hndle, /* Back-compat for pre-4.4 */ |
| 3759 | .metabox-holder h3.handle, /* Back-compat for pre-4.4 */ |
3760 | 3760 | .metabox-holder .stuffbox > h3, /* Back-compat for pre-4.4 */ |
3761 | 3761 | .metabox-holder .postbox > h3, /* Back-compat for pre-4.4 */ |
3762 | 3762 | .metabox-holder h2 { |
diff --git a/src/wp-admin/css/dashboard.css b/src/wp-admin/css/dashboard.css
index 19c6bf2..2e8de25 100644
a
|
b
|
form.initial-form.quickpress-open input#title { |
897 | 897 | opacity: 0; |
898 | 898 | } |
899 | 899 | |
900 | | .hndle:hover .edit-box, |
| 900 | .handle:hover .edit-box, |
901 | 901 | .edit-box:focus { |
902 | 902 | opacity: 1; |
903 | 903 | } |
… |
… |
form.initial-form.quickpress-open input#title { |
930 | 930 | text-decoration: underline; |
931 | 931 | } |
932 | 932 | |
933 | | #dashboard-widgets .hndle .postbox-title-action { |
| 933 | #dashboard-widgets .handle .postbox-title-action { |
934 | 934 | float: right; |
935 | 935 | line-height: 1.2; |
936 | 936 | } |
… |
… |
a.rsswidget { |
1099 | 1099 | color: #fff; |
1100 | 1100 | } |
1101 | 1101 | |
1102 | | #dashboard_browser_nag h2.hndle { |
| 1102 | #dashboard_browser_nag h2.handle { |
1103 | 1103 | border: none; |
1104 | 1104 | font-weight: 600; |
1105 | 1105 | font-size: 20px; |
diff --git a/src/wp-admin/css/edit.css b/src/wp-admin/css/edit.css
index 00c68e2..7167e0a 100644
a
|
b
|
span.wp-media-buttons-icon:before { |
598 | 598 | text-indent: 0; |
599 | 599 | } |
600 | 600 | |
601 | | #poststuff h3.hndle, /* Back-compat for pre-4.4 */ |
| 601 | #poststuff h3.handle, /* Back-compat for pre-4.4 */ |
602 | 602 | #poststuff .stuffbox > h3, /* Back-compat for pre-4.4 */ |
603 | 603 | #poststuff h2 { |
604 | 604 | font-size: 14px; |
… |
… |
table.links-table { |
1439 | 1439 | padding: 10px 10px; |
1440 | 1440 | } |
1441 | 1441 | |
1442 | | #poststuff h3.hndle, /* Back-compat for pre-4.4 */ |
| 1442 | #poststuff h3.handle, /* Back-compat for pre-4.4 */ |
1443 | 1443 | #poststuff .stuffbox > h3, /* Back-compat for pre-4.4 */ |
1444 | 1444 | #poststuff h2 { |
1445 | 1445 | padding: 12px; |
diff --git a/src/wp-admin/css/ie.css b/src/wp-admin/css/ie.css
index ceb02a8..7070688 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 .handle { |
250 | 250 | margin-bottom: -1px; |
251 | 251 | } |
252 | 252 | |
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> |