@wordpress/base-styles 5.1.0 → 5.3.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 CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 5.3.0 (2024-07-10)
6
+
7
+ ## 5.2.0 (2024-06-26)
8
+
5
9
  ## 5.1.0 (2024-06-15)
6
10
 
7
11
  ## 5.0.0 (2024-05-31)
@@ -98,7 +102,7 @@
98
102
 
99
103
  ## 4.0.0 (2021-09-09)
100
104
 
101
- ### Breaking Change
105
+ ### Breaking Changes
102
106
 
103
107
  - Remove the background-colors, foreground-colors, and gradient-colors mixins.
104
108
 
@@ -111,6 +115,6 @@
111
115
 
112
116
  ## 1.2.0 (2020-01-13)
113
117
 
114
- ### Bug Fix
118
+ ### Bug Fixes
115
119
 
116
120
  - Import `colors` into `variables` since the latter depends on the former.
package/_z-index.scss CHANGED
@@ -65,8 +65,10 @@ $z-layers: (
65
65
  // Needs to be below media library that has a z-index of 160000.
66
66
  "{core/video track editor popover}": 160000 - 10,
67
67
 
68
- // Needs to be below media library that has a z-index of 160000.
68
+ // Needs to be below media library (.media-model) that has a z-index of 160000.
69
69
  ".block-editor-format-toolbar__image-popover": 160000 - 10,
70
+ // Below the media library backdrop (.media-modal-backdrop), which has a z-index of 159900.
71
+ ".block-editor-global-styles-background-panel__popover": 159900 - 10,
70
72
 
71
73
  // Small screen inner blocks overlay must be displayed above drop zone,
72
74
  // settings menu, and movers.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/base-styles",
3
- "version": "5.1.0",
3
+ "version": "5.3.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": "66d3bf12e67d16deddc4b4a9ec42e1d0bed3479a"
30
+ "gitHead": "122867d355ca4edc63d3a3bbd9411d3a2e1458df"
31
31
  }