@wordpress/base-styles 6.18.0 → 6.19.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 +1 -1
- package/_variables.scss +0 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/_mixins.scss
CHANGED
|
@@ -689,7 +689,7 @@
|
|
|
689
689
|
outline-style: solid;
|
|
690
690
|
outline-width: calc(#{$widthRatio} * (var(--wp-admin-border-width-focus) / var(--wp-block-editor-iframe-zoom-out-scale, 1)));
|
|
691
691
|
outline-offset: calc(#{$widthRatio} * ((-1 * var(--wp-admin-border-width-focus) ) / var(--wp-block-editor-iframe-zoom-out-scale, 1)));
|
|
692
|
-
box-shadow: inset 0 0 0 calc(var(--wp-admin-border-width-focus
|
|
692
|
+
box-shadow: inset 0 0 0 calc((#{$widthRatio} * (var(--wp-admin-border-width-focus) / var(--wp-block-editor-iframe-zoom-out-scale, 1))) + 0.5px) rgba(colors.$white, 0.7);
|
|
693
693
|
}
|
|
694
694
|
|
|
695
695
|
@mixin selected-block-focus($widthRatio: 1) {
|
package/_variables.scss
CHANGED
|
@@ -107,7 +107,6 @@ $admin-sidebar-width-big: 190px;
|
|
|
107
107
|
$admin-sidebar-width-collapsed: 36px;
|
|
108
108
|
$spinner-size: 16px;
|
|
109
109
|
$canvas-padding: $grid-unit-20;
|
|
110
|
-
$palette-max-height: 368px;
|
|
111
110
|
|
|
112
111
|
// Deprecated, please use --wpds-dimension-surface-width-* design tokens instead.
|
|
113
112
|
$modal-min-width: 320px;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/base-styles",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.19.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",
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"publishConfig": {
|
|
46
46
|
"access": "public"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "2cea90674d11aa521ec3f71652fb3a6a4c383969"
|
|
49
49
|
}
|