@wordpress/base-styles 5.9.0 → 5.10.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/_animations.scss +0 -5
- package/_colors.scss +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/_animations.scss
CHANGED
|
@@ -36,11 +36,6 @@
|
|
|
36
36
|
@include reduce-motion("animation");
|
|
37
37
|
}
|
|
38
38
|
|
|
39
|
-
@mixin editor-canvas-resize-animation() {
|
|
40
|
-
transition: all 0.5s cubic-bezier(0.65, 0, 0.45, 1);
|
|
41
|
-
@include reduce-motion("transition");
|
|
42
|
-
}
|
|
43
|
-
|
|
44
39
|
// Deprecated
|
|
45
40
|
@mixin edit-post__fade-in-animation($speed: 0.08s, $delay: 0s) {
|
|
46
41
|
@warn "The `edit-post__fade-in-animation` mixin is deprecated. Use `animation__fade-in` instead.";
|
package/_colors.scss
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
$black: #000; // Use only when you truly need pure black. For UI, use $gray-900.
|
|
9
9
|
$gray-900: #1e1e1e;
|
|
10
10
|
$gray-800: #2f2f2f;
|
|
11
|
-
$gray-700: #757575; // Meets 4.6:1 text contrast against white.
|
|
11
|
+
$gray-700: #757575; // Meets 4.6:1 (4.5:1 is minimum) text contrast against white.
|
|
12
12
|
$gray-600: #949494; // Meets 3:1 UI or large text contrast against white.
|
|
13
13
|
$gray-400: #ccc;
|
|
14
14
|
$gray-300: #ddd; // Used for most borders.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/base-styles",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.10.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",
|
|
@@ -27,5 +27,5 @@
|
|
|
27
27
|
"publishConfig": {
|
|
28
28
|
"access": "public"
|
|
29
29
|
},
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "ab34a7ac935fd1478eac63b596242d83270897ee"
|
|
31
31
|
}
|