Commit f6d04df3f1 for wordpress.org
commit f6d04df3f1a3e4f993c0918246145e848cf74b0c
Author: afercia <afercia@git.wordpress.org>
Date: Sat Sep 5 13:08:49 2026 +0000
Administration: Fix the CSS Coding Standards in jquery-ui-dialog.css.
Lints the `src/wp-includes/css/jquery-ui-dialog.css` file.
Part of the ongoing effort to lint all the admin CSS files.
Developed in https://github.com/WordPress/wordpress-develop/pull/13165
See #65898.
Built from https://develop.svn.wordpress.org/trunk@63502
git-svn-id: http://core.svn.wordpress.org/trunk@62678 1a063a9b-81f0-0310-95a4-ce76da25c4cd
diff --git a/wp-includes/css/jquery-ui-dialog-rtl.css b/wp-includes/css/jquery-ui-dialog-rtl.css
index dd5efa4e9c..e6e1a2c4c0 100644
--- a/wp-includes/css/jquery-ui-dialog-rtl.css
+++ b/wp-includes/css/jquery-ui-dialog-rtl.css
@@ -10,11 +10,14 @@
* http://api.jqueryui.com/category/theming/
*/
-/* Layout helpers
-----------------------------------*/
+/**
+ * Layout helpers
+ */
+
.ui-helper-hidden {
display: none;
}
+
.ui-helper-hidden-accessible {
border: 0;
clip: rect(0 0 0 0);
@@ -25,6 +28,7 @@
position: absolute;
width: 1px;
}
+
.ui-helper-reset {
margin: 0;
padding: 0;
@@ -35,18 +39,22 @@
font-size: 100%;
list-style: none;
}
-.ui-helper-clearfix:before,
-.ui-helper-clearfix:after {
+
+.ui-helper-clearfix::before,
+.ui-helper-clearfix::after {
content: "";
display: table;
border-collapse: collapse;
}
-.ui-helper-clearfix:after {
+
+.ui-helper-clearfix::after {
clear: both;
}
+
.ui-helper-clearfix {
min-height: 0; /* support: IE7 */
}
+
.ui-helper-zfix {
width: 100%;
height: 100%;
@@ -54,23 +62,23 @@
right: 0;
position: absolute;
opacity: 0;
- filter:Alpha(Opacity=0); /* support: IE8 */
}
.ui-front {
z-index: 100;
}
+/**
+ * Interaction Cues
+ */
-/* Interaction Cues
-----------------------------------*/
.ui-state-disabled {
cursor: default !important;
}
-
-/* Icons
-----------------------------------*/
+/**
+ * Icons
+ */
/* states and images */
.ui-icon {
@@ -80,17 +88,23 @@
background-repeat: no-repeat;
}
-
-/* Misc visuals
-----------------------------------*/
+/**
+ * Misc visuals
+ */
/* Overlays */
.ui-widget-overlay {
position: fixed;
top: 0;
right: 0;
+ left: 0;
+ bottom: 0;
width: 100%;
height: 100%;
+ min-height: 360px;
+ background: #000;
+ opacity: 0.7;
+ z-index: 100101;
}
/*!
@@ -101,19 +115,23 @@
* Released under the MIT license.
* http://jquery.org/license
*/
+
.ui-resizable {
position: relative;
}
+
.ui-resizable-handle {
position: absolute;
font-size: 0.1px;
display: block;
touch-action: none;
}
+
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
display: none;
}
+
.ui-resizable-n {
cursor: n-resize;
height: 7px;
@@ -121,6 +139,7 @@
top: -5px;
right: 0;
}
+
.ui-resizable-s {
cursor: s-resize;
height: 7px;
@@ -128,6 +147,7 @@
bottom: -5px;
right: 0;
}
+
/* rtl:ignore */
.ui-resizable-e {
cursor: e-resize;
@@ -136,6 +156,7 @@
top: 0;
height: 100%;
}
+
/* rtl:ignore */
.ui-resizable-w {
cursor: w-resize;
@@ -144,6 +165,7 @@
top: 0;
height: 100%;
}
+
/* rtl:ignore */
.ui-resizable-se {
cursor: se-resize;
@@ -152,6 +174,7 @@
right: 1px;
bottom: 1px;
}
+
/* rtl:ignore */
.ui-resizable-sw {
cursor: sw-resize;
@@ -160,6 +183,7 @@
left: -5px;
bottom: -5px;
}
+
/* rtl:ignore */
.ui-resizable-nw {
cursor: nw-resize;
@@ -168,6 +192,7 @@
left: -5px;
top: -5px;
}
+
/* rtl:ignore */
.ui-resizable-ne {
cursor: ne-resize;
@@ -177,7 +202,9 @@
top: -5px;
}
-/* WP buttons: see buttons.css. */
+/**
+ * WP buttons: see buttons.css
+ */
.ui-button {
display: inline-block;
@@ -243,7 +270,6 @@
}
@media screen and (max-width: 782px) {
-
.ui-button {
padding: 6px 14px;
line-height: normal;
@@ -255,7 +281,9 @@
}
-/* WP Theme */
+/**
+ * WP Theme
+ */
.ui-dialog {
position: absolute;
@@ -295,8 +323,8 @@
overflow: hidden;
}
-.ui-dialog-titlebar-close:before {
- font: normal 20px/1 dashicons;
+.ui-dialog-titlebar-close::before {
+ font: 400 20px/1 dashicons;
vertical-align: top;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
@@ -304,7 +332,7 @@
width: 36px;
height: 36px;
content: "\f158";
- content: "\f158" / '';
+ content: "\f158" / "";
}
.ui-button.ui-dialog-titlebar-close:hover,
@@ -341,16 +369,3 @@
.ui-draggable .ui-dialog-titlebar {
cursor: move;
}
-
-.ui-widget-overlay {
- position: fixed;
- top: 0;
- right: 0;
- left: 0;
- bottom: 0;
- min-height: 360px;
- background: #000;
- opacity: 0.7;
- filter: alpha(opacity=70);
- z-index: 100101;
-}
diff --git a/wp-includes/css/jquery-ui-dialog-rtl.min.css b/wp-includes/css/jquery-ui-dialog-rtl.min.css
index 8b92689308..d596da9c1f 100644
--- a/wp-includes/css/jquery-ui-dialog-rtl.min.css
+++ b/wp-includes/css/jquery-ui-dialog-rtl.min.css
@@ -8,11 +8,11 @@
* http://jquery.org/license
*
* http://api.jqueryui.com/category/theming/
- */.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:after,.ui-helper-clearfix:before{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;right:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;right:0;width:100%;height:100%}/*!
+ */.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix::after,.ui-helper-clearfix::before{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix::after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;right:0;position:absolute;opacity:0}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;right:0;left:0;bottom:0;width:100%;height:100%;min-height:360px;background:#000;opacity:.7;z-index:100101}/*!
* jQuery UI Resizable 1.11.4
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- */.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;display:block;touch-action:none}.ui-resizable-autohide .ui-resizable-handle,.ui-resizable-disabled .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;right:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;right:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-button{display:inline-block;text-decoration:none;font-size:13px;line-height:2;height:28px;margin:0;padding:0 10px 1px;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-sizing:border-box;color:#50575e;border-color:#c3c4c7;background:#f6f7f7;box-shadow:0 1px 0 #c3c4c7;vertical-align:top}.ui-button:active,.ui-button:focus{outline:0}.ui-button::-moz-focus-inner{border-width:0;border-style:none;padding:0}.ui-button:focus,.ui-button:hover{background:#f6f7f7;border-color:#8c8f94;color:#1d2327}.ui-button:focus{border-color:#4f94d4;box-shadow:0 0 3px rgba(34,113,177,.8)}.ui-button:active{background:#f0f0f1;border-color:#8c8f94;box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5)}.ui-button:disabled,.ui-button[disabled]{color:#a7aaad!important;border-color:#dcdcde!important;background:#f6f7f7!important;box-shadow:none!important;text-shadow:0 1px 0 #fff!important;cursor:default;transform:none!important}@media screen and (max-width:782px){.ui-button{padding:6px 14px;line-height:normal;font-size:14px;vertical-align:middle;height:auto;margin-bottom:4px}}.ui-dialog{position:absolute;top:0;right:0;z-index:100102;background-color:#fff;box-shadow:0 3px 6px rgba(0,0,0,.3);overflow:hidden}.ui-dialog-titlebar{background:#fff;border-bottom:1px solid #dcdcde;height:36px;font-size:18px;font-weight:600;line-height:2;padding:0 16px 0 36px}.ui-button.ui-dialog-titlebar-close{background:0 0;border:none;box-shadow:none;color:#646970;cursor:pointer;display:block;padding:0;position:absolute;top:0;left:0;width:36px;height:36px;text-align:center;border-radius:0;overflow:hidden}.ui-dialog-titlebar-close:before{font:normal 20px/1 dashicons;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;line-height:1.8;width:36px;height:36px;content:"\f158";content:"\f158"/''}.ui-button.ui-dialog-titlebar-close:focus,.ui-button.ui-dialog-titlebar-close:hover{color:#135e96}.ui-button.ui-dialog-titlebar-close:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent;outline-offset:-2px}.ui-dialog-content{padding:16px;overflow:auto}.ui-dialog-buttonpane{background:#fff;border-top:1px solid #dcdcde;padding:16px}.ui-dialog-buttonpane .ui-button{margin-right:16px}.ui-dialog-buttonpane .ui-dialog-buttonset{float:left}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-widget-overlay{position:fixed;top:0;right:0;left:0;bottom:0;min-height:360px;background:#000;opacity:.7;z-index:100101}
\ No newline at end of file
+ */.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;display:block;touch-action:none}.ui-resizable-autohide .ui-resizable-handle,.ui-resizable-disabled .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;right:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;right:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-button{display:inline-block;text-decoration:none;font-size:13px;line-height:2;height:28px;margin:0;padding:0 10px 1px;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-sizing:border-box;color:#50575e;border-color:#c3c4c7;background:#f6f7f7;box-shadow:0 1px 0 #c3c4c7;vertical-align:top}.ui-button:active,.ui-button:focus{outline:0}.ui-button::-moz-focus-inner{border-width:0;border-style:none;padding:0}.ui-button:focus,.ui-button:hover{background:#f6f7f7;border-color:#8c8f94;color:#1d2327}.ui-button:focus{border-color:#4f94d4;box-shadow:0 0 3px rgba(34,113,177,.8)}.ui-button:active{background:#f0f0f1;border-color:#8c8f94;box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5)}.ui-button:disabled,.ui-button[disabled]{color:#a7aaad!important;border-color:#dcdcde!important;background:#f6f7f7!important;box-shadow:none!important;text-shadow:0 1px 0 #fff!important;cursor:default;transform:none!important}@media screen and (max-width:782px){.ui-button{padding:6px 14px;line-height:normal;font-size:14px;vertical-align:middle;height:auto;margin-bottom:4px}}.ui-dialog{position:absolute;top:0;right:0;z-index:100102;background-color:#fff;box-shadow:0 3px 6px rgba(0,0,0,.3);overflow:hidden}.ui-dialog-titlebar{background:#fff;border-bottom:1px solid #dcdcde;height:36px;font-size:18px;font-weight:600;line-height:2;padding:0 16px 0 36px}.ui-button.ui-dialog-titlebar-close{background:0 0;border:none;box-shadow:none;color:#646970;cursor:pointer;display:block;padding:0;position:absolute;top:0;left:0;width:36px;height:36px;text-align:center;border-radius:0;overflow:hidden}.ui-dialog-titlebar-close::before{font:400 20px/1 dashicons;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;line-height:1.8;width:36px;height:36px;content:"\f158";content:"\f158"/""}.ui-button.ui-dialog-titlebar-close:focus,.ui-button.ui-dialog-titlebar-close:hover{color:#135e96}.ui-button.ui-dialog-titlebar-close:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent;outline-offset:-2px}.ui-dialog-content{padding:16px;overflow:auto}.ui-dialog-buttonpane{background:#fff;border-top:1px solid #dcdcde;padding:16px}.ui-dialog-buttonpane .ui-button{margin-right:16px}.ui-dialog-buttonpane .ui-dialog-buttonset{float:left}.ui-draggable .ui-dialog-titlebar{cursor:move}
\ No newline at end of file
diff --git a/wp-includes/css/jquery-ui-dialog.css b/wp-includes/css/jquery-ui-dialog.css
index 911d62d88d..8bc8014808 100644
--- a/wp-includes/css/jquery-ui-dialog.css
+++ b/wp-includes/css/jquery-ui-dialog.css
@@ -9,11 +9,14 @@
* http://api.jqueryui.com/category/theming/
*/
-/* Layout helpers
-----------------------------------*/
+/**
+ * Layout helpers
+ */
+
.ui-helper-hidden {
display: none;
}
+
.ui-helper-hidden-accessible {
border: 0;
clip: rect(0 0 0 0);
@@ -24,6 +27,7 @@
position: absolute;
width: 1px;
}
+
.ui-helper-reset {
margin: 0;
padding: 0;
@@ -34,18 +38,22 @@
font-size: 100%;
list-style: none;
}
-.ui-helper-clearfix:before,
-.ui-helper-clearfix:after {
+
+.ui-helper-clearfix::before,
+.ui-helper-clearfix::after {
content: "";
display: table;
border-collapse: collapse;
}
-.ui-helper-clearfix:after {
+
+.ui-helper-clearfix::after {
clear: both;
}
+
.ui-helper-clearfix {
min-height: 0; /* support: IE7 */
}
+
.ui-helper-zfix {
width: 100%;
height: 100%;
@@ -53,23 +61,23 @@
left: 0;
position: absolute;
opacity: 0;
- filter:Alpha(Opacity=0); /* support: IE8 */
}
.ui-front {
z-index: 100;
}
+/**
+ * Interaction Cues
+ */
-/* Interaction Cues
-----------------------------------*/
.ui-state-disabled {
cursor: default !important;
}
-
-/* Icons
-----------------------------------*/
+/**
+ * Icons
+ */
/* states and images */
.ui-icon {
@@ -79,17 +87,23 @@
background-repeat: no-repeat;
}
-
-/* Misc visuals
-----------------------------------*/
+/**
+ * Misc visuals
+ */
/* Overlays */
.ui-widget-overlay {
position: fixed;
top: 0;
left: 0;
+ right: 0;
+ bottom: 0;
width: 100%;
height: 100%;
+ min-height: 360px;
+ background: #000;
+ opacity: 0.7;
+ z-index: 100101;
}
/*!
@@ -100,19 +114,23 @@
* Released under the MIT license.
* http://jquery.org/license
*/
+
.ui-resizable {
position: relative;
}
+
.ui-resizable-handle {
position: absolute;
font-size: 0.1px;
display: block;
touch-action: none;
}
+
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
display: none;
}
+
.ui-resizable-n {
cursor: n-resize;
height: 7px;
@@ -120,6 +138,7 @@
top: -5px;
left: 0;
}
+
.ui-resizable-s {
cursor: s-resize;
height: 7px;
@@ -127,6 +146,7 @@
bottom: -5px;
left: 0;
}
+
/* rtl:ignore */
.ui-resizable-e {
cursor: e-resize;
@@ -135,6 +155,7 @@
top: 0;
height: 100%;
}
+
/* rtl:ignore */
.ui-resizable-w {
cursor: w-resize;
@@ -143,6 +164,7 @@
top: 0;
height: 100%;
}
+
/* rtl:ignore */
.ui-resizable-se {
cursor: se-resize;
@@ -151,6 +173,7 @@
right: 1px;
bottom: 1px;
}
+
/* rtl:ignore */
.ui-resizable-sw {
cursor: sw-resize;
@@ -159,6 +182,7 @@
left: -5px;
bottom: -5px;
}
+
/* rtl:ignore */
.ui-resizable-nw {
cursor: nw-resize;
@@ -167,6 +191,7 @@
left: -5px;
top: -5px;
}
+
/* rtl:ignore */
.ui-resizable-ne {
cursor: ne-resize;
@@ -176,7 +201,9 @@
top: -5px;
}
-/* WP buttons: see buttons.css. */
+/**
+ * WP buttons: see buttons.css
+ */
.ui-button {
display: inline-block;
@@ -242,7 +269,6 @@
}
@media screen and (max-width: 782px) {
-
.ui-button {
padding: 6px 14px;
line-height: normal;
@@ -254,7 +280,9 @@
}
-/* WP Theme */
+/**
+ * WP Theme
+ */
.ui-dialog {
position: absolute;
@@ -294,8 +322,8 @@
overflow: hidden;
}
-.ui-dialog-titlebar-close:before {
- font: normal 20px/1 dashicons;
+.ui-dialog-titlebar-close::before {
+ font: 400 20px/1 dashicons;
vertical-align: top;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
@@ -303,7 +331,7 @@
width: 36px;
height: 36px;
content: "\f158";
- content: "\f158" / '';
+ content: "\f158" / "";
}
.ui-button.ui-dialog-titlebar-close:hover,
@@ -340,16 +368,3 @@
.ui-draggable .ui-dialog-titlebar {
cursor: move;
}
-
-.ui-widget-overlay {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- min-height: 360px;
- background: #000;
- opacity: 0.7;
- filter: alpha(opacity=70);
- z-index: 100101;
-}
diff --git a/wp-includes/css/jquery-ui-dialog.min.css b/wp-includes/css/jquery-ui-dialog.min.css
index b6354bcfc6..a0a8fb6c5a 100644
--- a/wp-includes/css/jquery-ui-dialog.min.css
+++ b/wp-includes/css/jquery-ui-dialog.min.css
@@ -8,11 +8,11 @@
* http://jquery.org/license
*
* http://api.jqueryui.com/category/theming/
- */.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:after,.ui-helper-clearfix:before{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}/*!
+ */.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix::after,.ui-helper-clearfix::before{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix::after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;right:0;bottom:0;width:100%;height:100%;min-height:360px;background:#000;opacity:.7;z-index:100101}/*!
* jQuery UI Resizable 1.11.4
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
- */.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;display:block;touch-action:none}.ui-resizable-autohide .ui-resizable-handle,.ui-resizable-disabled .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-button{display:inline-block;text-decoration:none;font-size:13px;line-height:2;height:28px;margin:0;padding:0 10px 1px;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-sizing:border-box;color:#50575e;border-color:#c3c4c7;background:#f6f7f7;box-shadow:0 1px 0 #c3c4c7;vertical-align:top}.ui-button:active,.ui-button:focus{outline:0}.ui-button::-moz-focus-inner{border-width:0;border-style:none;padding:0}.ui-button:focus,.ui-button:hover{background:#f6f7f7;border-color:#8c8f94;color:#1d2327}.ui-button:focus{border-color:#4f94d4;box-shadow:0 0 3px rgba(34,113,177,.8)}.ui-button:active{background:#f0f0f1;border-color:#8c8f94;box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5)}.ui-button:disabled,.ui-button[disabled]{color:#a7aaad!important;border-color:#dcdcde!important;background:#f6f7f7!important;box-shadow:none!important;text-shadow:0 1px 0 #fff!important;cursor:default;transform:none!important}@media screen and (max-width:782px){.ui-button{padding:6px 14px;line-height:normal;font-size:14px;vertical-align:middle;height:auto;margin-bottom:4px}}.ui-dialog{position:absolute;top:0;left:0;z-index:100102;background-color:#fff;box-shadow:0 3px 6px rgba(0,0,0,.3);overflow:hidden}.ui-dialog-titlebar{background:#fff;border-bottom:1px solid #dcdcde;height:36px;font-size:18px;font-weight:600;line-height:2;padding:0 36px 0 16px}.ui-button.ui-dialog-titlebar-close{background:0 0;border:none;box-shadow:none;color:#646970;cursor:pointer;display:block;padding:0;position:absolute;top:0;right:0;width:36px;height:36px;text-align:center;border-radius:0;overflow:hidden}.ui-dialog-titlebar-close:before{font:normal 20px/1 dashicons;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;line-height:1.8;width:36px;height:36px;content:"\f158";content:"\f158"/''}.ui-button.ui-dialog-titlebar-close:focus,.ui-button.ui-dialog-titlebar-close:hover{color:#135e96}.ui-button.ui-dialog-titlebar-close:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent;outline-offset:-2px}.ui-dialog-content{padding:16px;overflow:auto}.ui-dialog-buttonpane{background:#fff;border-top:1px solid #dcdcde;padding:16px}.ui-dialog-buttonpane .ui-button{margin-left:16px}.ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-widget-overlay{position:fixed;top:0;left:0;right:0;bottom:0;min-height:360px;background:#000;opacity:.7;z-index:100101}
\ No newline at end of file
+ */.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;display:block;touch-action:none}.ui-resizable-autohide .ui-resizable-handle,.ui-resizable-disabled .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-button{display:inline-block;text-decoration:none;font-size:13px;line-height:2;height:28px;margin:0;padding:0 10px 1px;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-sizing:border-box;color:#50575e;border-color:#c3c4c7;background:#f6f7f7;box-shadow:0 1px 0 #c3c4c7;vertical-align:top}.ui-button:active,.ui-button:focus{outline:0}.ui-button::-moz-focus-inner{border-width:0;border-style:none;padding:0}.ui-button:focus,.ui-button:hover{background:#f6f7f7;border-color:#8c8f94;color:#1d2327}.ui-button:focus{border-color:#4f94d4;box-shadow:0 0 3px rgba(34,113,177,.8)}.ui-button:active{background:#f0f0f1;border-color:#8c8f94;box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5)}.ui-button:disabled,.ui-button[disabled]{color:#a7aaad!important;border-color:#dcdcde!important;background:#f6f7f7!important;box-shadow:none!important;text-shadow:0 1px 0 #fff!important;cursor:default;transform:none!important}@media screen and (max-width:782px){.ui-button{padding:6px 14px;line-height:normal;font-size:14px;vertical-align:middle;height:auto;margin-bottom:4px}}.ui-dialog{position:absolute;top:0;left:0;z-index:100102;background-color:#fff;box-shadow:0 3px 6px rgba(0,0,0,.3);overflow:hidden}.ui-dialog-titlebar{background:#fff;border-bottom:1px solid #dcdcde;height:36px;font-size:18px;font-weight:600;line-height:2;padding:0 36px 0 16px}.ui-button.ui-dialog-titlebar-close{background:0 0;border:none;box-shadow:none;color:#646970;cursor:pointer;display:block;padding:0;position:absolute;top:0;right:0;width:36px;height:36px;text-align:center;border-radius:0;overflow:hidden}.ui-dialog-titlebar-close::before{font:400 20px/1 dashicons;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;line-height:1.8;width:36px;height:36px;content:"\f158";content:"\f158"/""}.ui-button.ui-dialog-titlebar-close:focus,.ui-button.ui-dialog-titlebar-close:hover{color:#135e96}.ui-button.ui-dialog-titlebar-close:focus{box-shadow:0 0 0 var(--wp-admin-border-width-focus,1.5px) var(--wp-admin-theme-color,#3858e9);outline:2px solid transparent;outline-offset:-2px}.ui-dialog-content{padding:16px;overflow:auto}.ui-dialog-buttonpane{background:#fff;border-top:1px solid #dcdcde;padding:16px}.ui-dialog-buttonpane .ui-button{margin-left:16px}.ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-draggable .ui-dialog-titlebar{cursor:move}
\ No newline at end of file
diff --git a/wp-includes/version.php b/wp-includes/version.php
index 7975d09ff9..e744f88d88 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
-$wp_version = '7.2-alpha-63501';
+$wp_version = '7.2-alpha-63502';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.