@wordpress/base-styles 4.28.0 → 4.29.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/_colors.native.scss +4 -0
- package/_z-index.scss +6 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/_colors.native.scss
CHANGED
|
@@ -31,9 +31,11 @@ $red-50: #d63638;
|
|
|
31
31
|
// Primary Accent (Blues)
|
|
32
32
|
$blue-wordpress: #0087be;
|
|
33
33
|
$blue-medium: #00aadc;
|
|
34
|
+
$blue-60: #055d9c;
|
|
34
35
|
$blue-500: #016087;
|
|
35
36
|
// Primary tint color (light)
|
|
36
37
|
$blue-50: #2271b1;
|
|
38
|
+
$blue-40: #1689db;
|
|
37
39
|
// Primary tint color (dark)
|
|
38
40
|
$blue-30: #5198d9;
|
|
39
41
|
|
|
@@ -97,11 +99,13 @@ $dark-secondary: #fff9; //rgba(255, 255, 255, 0.6);
|
|
|
97
99
|
$dark-tertiary: #ffffff6d; //rgba(255, 255, 255, 0.43);
|
|
98
100
|
$dark-quaternary: #ffffff3f; //rgba(255, 255, 255, 0.25);
|
|
99
101
|
$dark-ultra-dim: #ffffff14; //rgba(255, 255, 255, 0.08);
|
|
102
|
+
$dark-dim: #ffffff1f; //rgba(255, 255, 255, 0.12)
|
|
100
103
|
|
|
101
104
|
// Design Token colors
|
|
102
105
|
$app-background: $white;
|
|
103
106
|
$app-background-dark: $black;
|
|
104
107
|
$app-background-dark-alt: $background-dark-elevated;
|
|
108
|
+
$app-safe-area-background-dark: #141414;
|
|
105
109
|
|
|
106
110
|
$modal-background: $white;
|
|
107
111
|
$modal-background-dark: $background-dark-elevated;
|
package/_z-index.scss
CHANGED
|
@@ -144,7 +144,10 @@ $z-layers: (
|
|
|
144
144
|
// The focus styles of the region navigation containers should be above their content.
|
|
145
145
|
".is-focusing-regions {region} :focus::after": 1000000,
|
|
146
146
|
|
|
147
|
-
// Show
|
|
147
|
+
// Show NUX tips above popovers, wp-admin menus, submenus, and sidebar:
|
|
148
|
+
".nux-dot-tip": 1000001,
|
|
149
|
+
|
|
150
|
+
// Show tooltips above NUX tips, wp-admin menus, submenus, and sidebar:
|
|
148
151
|
".components-tooltip": 1000002,
|
|
149
152
|
|
|
150
153
|
// Keep template popover underneath 'Create custom template' modal overlay.
|
|
@@ -186,6 +189,8 @@ $z-layers: (
|
|
|
186
189
|
".edit-site-layout__hub": 3,
|
|
187
190
|
".edit-site-layout__header": 2,
|
|
188
191
|
".edit-site-page-header": 2,
|
|
192
|
+
".edit-site-patterns__header": 2,
|
|
193
|
+
".edit-site-patterns__grid-pagination": 2,
|
|
189
194
|
".edit-site-layout__canvas-container": 2,
|
|
190
195
|
".edit-site-layout__sidebar": 1,
|
|
191
196
|
".edit-site-layout__canvas-container.is-resizing::after": 100,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/base-styles",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.29.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": "6f14d11ed4cb59df110a28ebaa23ecba95eb673a"
|
|
27
27
|
}
|