@wordpress/base-styles 4.48.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 +2 -0
- package/_mixins.scss +7 -7
- package/_z-index.scss +4 -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
|
@@ -205,10 +205,13 @@ $z-layers: (
|
|
|
205
205
|
".edit-site-sidebar-navigation-screen__title-icon": 1,
|
|
206
206
|
|
|
207
207
|
// Ensure modal footer actions appear above modal contents
|
|
208
|
-
".
|
|
208
|
+
".editor-start-template-options__modal__actions": 1,
|
|
209
209
|
|
|
210
210
|
// Ensure checkbox + actions don't overlap table header
|
|
211
211
|
".dataviews-view-table thead": 1,
|
|
212
|
+
|
|
213
|
+
// Ensure quick actions toolbar appear above pagination
|
|
214
|
+
".dataviews-bulk-actions": 2,
|
|
212
215
|
);
|
|
213
216
|
|
|
214
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
|
}
|