@wordpress/base-styles 4.27.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 +4 -0
- package/_colors.native.scss +4 -0
- package/_variables.scss +1 -1
- package/_z-index.scss +7 -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/_variables.scss
CHANGED
|
@@ -48,7 +48,7 @@ $icon-size: 24px;
|
|
|
48
48
|
$button-size: 36px;
|
|
49
49
|
$button-size-next-default-40px: 40px; // transitionary variable for next default button size
|
|
50
50
|
$button-size-small: 24px;
|
|
51
|
-
$button-size-
|
|
51
|
+
$button-size-compact: 32px;
|
|
52
52
|
$header-height: 60px;
|
|
53
53
|
$panel-header-height: $grid-unit-60;
|
|
54
54
|
$nav-sidebar-width: 360px;
|
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.
|
|
@@ -182,9 +185,12 @@ $z-layers: (
|
|
|
182
185
|
".customize-widgets__block-toolbar": 7,
|
|
183
186
|
|
|
184
187
|
// Site editor layout
|
|
188
|
+
".edit-site-layout__header-container": 4,
|
|
185
189
|
".edit-site-layout__hub": 3,
|
|
186
190
|
".edit-site-layout__header": 2,
|
|
187
191
|
".edit-site-page-header": 2,
|
|
192
|
+
".edit-site-patterns__header": 2,
|
|
193
|
+
".edit-site-patterns__grid-pagination": 2,
|
|
188
194
|
".edit-site-layout__canvas-container": 2,
|
|
189
195
|
".edit-site-layout__sidebar": 1,
|
|
190
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
|
}
|