@wordpress/base-styles 4.47.0 → 4.49.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/_mixins.scss +7 -7
- package/_z-index.scss +6 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/_mixins.scss
CHANGED
|
@@ -284,9 +284,8 @@
|
|
|
284
284
|
display: inline-block;
|
|
285
285
|
vertical-align: middle;
|
|
286
286
|
width: 16px;
|
|
287
|
-
/* stylelint-disable */
|
|
287
|
+
/* stylelint-disable-next-line font-family-no-missing-generic-family-keyword -- dashicons don't need a generic family keyword. */
|
|
288
288
|
font: normal 30px/1 dashicons;
|
|
289
|
-
/* stylelint-enable */
|
|
290
289
|
speak: none;
|
|
291
290
|
-webkit-font-smoothing: antialiased;
|
|
292
291
|
-moz-osx-font-smoothing: grayscale;
|
|
@@ -317,10 +316,14 @@
|
|
|
317
316
|
border-radius: $radius-round;
|
|
318
317
|
width: $radio-input-size-sm;
|
|
319
318
|
height: $radio-input-size-sm;
|
|
319
|
+
min-width: $radio-input-size-sm;
|
|
320
|
+
max-width: $radio-input-size-sm;
|
|
320
321
|
|
|
321
322
|
@include break-small() {
|
|
322
323
|
height: $radio-input-size;
|
|
323
324
|
width: $radio-input-size;
|
|
325
|
+
min-width: $radio-input-size;
|
|
326
|
+
max-width: $radio-input-size;
|
|
324
327
|
}
|
|
325
328
|
|
|
326
329
|
&:checked::before {
|
|
@@ -518,12 +521,9 @@
|
|
|
518
521
|
|
|
519
522
|
// Deprecated from UI, kept for back-compat.
|
|
520
523
|
@mixin gradient-colors-deprecated() {
|
|
521
|
-
|
|
522
|
-
* Our classes uses the same values we set for gradient value attributes,
|
|
523
|
-
* and we can not use spacing because of WP multi site kses rule.
|
|
524
|
-
*/
|
|
524
|
+
// Our classes uses the same values we set for gradient value attributes.
|
|
525
525
|
|
|
526
|
-
/* stylelint-disable function-comma-space-after */
|
|
526
|
+
/* stylelint-disable function-comma-space-after -- We can not use spacing because of WP multi site kses rule. */
|
|
527
527
|
.has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background {
|
|
528
528
|
background: linear-gradient(135deg,rgba(0,208,132,1) 0%,rgba(6,147,227,1) 100%);
|
|
529
529
|
}
|
package/_z-index.scss
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
$z-layers: (
|
|
6
6
|
".block-editor-block-list__block::before": 0,
|
|
7
|
+
".block-editor-block-list__block.is-selected": 20,
|
|
7
8
|
".block-editor-block-switcher__arrow": 1,
|
|
8
9
|
".block-editor-block-list__block {core/image aligned wide or fullwide}": 20,
|
|
9
10
|
".block-library-classic__toolbar": 31, // When scrolled to top this toolbar needs to sit over block-editor-block-toolbar
|
|
@@ -87,6 +88,7 @@ $z-layers: (
|
|
|
87
88
|
// #wpadminbar { z-index: 99999 }
|
|
88
89
|
".interface-interface-skeleton__sidebar": 100000,
|
|
89
90
|
".edit-post-layout__toggle-sidebar-panel": 100000,
|
|
91
|
+
".editor-layout__toggle-sidebar-panel": 100000,
|
|
90
92
|
".edit-widgets-sidebar": 100000,
|
|
91
93
|
".edit-post-layout .edit-post-post-publish-panel": 100001,
|
|
92
94
|
// For larger views, the wp-admin navbar dropdown should be at top of
|
|
@@ -203,10 +205,13 @@ $z-layers: (
|
|
|
203
205
|
".edit-site-sidebar-navigation-screen__title-icon": 1,
|
|
204
206
|
|
|
205
207
|
// Ensure modal footer actions appear above modal contents
|
|
206
|
-
".
|
|
208
|
+
".editor-start-template-options__modal__actions": 1,
|
|
207
209
|
|
|
208
210
|
// Ensure checkbox + actions don't overlap table header
|
|
209
211
|
".dataviews-view-table thead": 1,
|
|
212
|
+
|
|
213
|
+
// Ensure quick actions toolbar appear above pagination
|
|
214
|
+
".dataviews-bulk-actions": 2,
|
|
210
215
|
);
|
|
211
216
|
|
|
212
217
|
@function z-index( $key ) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/base-styles",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.49.0",
|
|
4
4
|
"description": "Base SCSS utilities and variables for WordPress.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -23,5 +23,5 @@
|
|
|
23
23
|
"publishConfig": {
|
|
24
24
|
"access": "public"
|
|
25
25
|
},
|
|
26
|
-
"gitHead": "
|
|
26
|
+
"gitHead": "42f38f287506a6b3ed8ccba839b18ad066821044"
|
|
27
27
|
}
|