@wordpress/interface 5.12.10 → 5.12.12
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.
|
@@ -320,6 +320,11 @@ body.is-fullscreen-mode .interface-interface-skeleton {
|
|
|
320
320
|
overflow: auto;
|
|
321
321
|
z-index: 20;
|
|
322
322
|
}
|
|
323
|
+
@media (min-width: 782px) {
|
|
324
|
+
.interface-interface-skeleton__content {
|
|
325
|
+
z-index: auto;
|
|
326
|
+
}
|
|
327
|
+
}
|
|
323
328
|
|
|
324
329
|
.interface-interface-skeleton__secondary-sidebar,
|
|
325
330
|
.interface-interface-skeleton__sidebar {
|
package/build-style/style.css
CHANGED
|
@@ -320,6 +320,11 @@ body.is-fullscreen-mode .interface-interface-skeleton {
|
|
|
320
320
|
overflow: auto;
|
|
321
321
|
z-index: 20;
|
|
322
322
|
}
|
|
323
|
+
@media (min-width: 782px) {
|
|
324
|
+
.interface-interface-skeleton__content {
|
|
325
|
+
z-index: auto;
|
|
326
|
+
}
|
|
327
|
+
}
|
|
323
328
|
|
|
324
329
|
.interface-interface-skeleton__secondary-sidebar,
|
|
325
330
|
.interface-interface-skeleton__sidebar {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/interface",
|
|
3
|
-
"version": "5.12.
|
|
3
|
+
"version": "5.12.12",
|
|
4
4
|
"description": "Interface module for WordPress. The package contains shared functionality across the modern JavaScript-based WordPress screens.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -32,17 +32,17 @@
|
|
|
32
32
|
],
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@babel/runtime": "^7.16.0",
|
|
35
|
-
"@wordpress/a11y": "^3.35.
|
|
36
|
-
"@wordpress/components": "^25.1.
|
|
37
|
-
"@wordpress/compose": "^6.12.
|
|
38
|
-
"@wordpress/data": "^9.5.
|
|
39
|
-
"@wordpress/deprecated": "^3.35.
|
|
40
|
-
"@wordpress/element": "^5.12.
|
|
41
|
-
"@wordpress/i18n": "^4.35.
|
|
42
|
-
"@wordpress/icons": "^9.26.
|
|
43
|
-
"@wordpress/plugins": "^6.3.
|
|
44
|
-
"@wordpress/preferences": "^3.12.
|
|
45
|
-
"@wordpress/viewport": "^5.12.
|
|
35
|
+
"@wordpress/a11y": "^3.35.2",
|
|
36
|
+
"@wordpress/components": "^25.1.12",
|
|
37
|
+
"@wordpress/compose": "^6.12.3",
|
|
38
|
+
"@wordpress/data": "^9.5.6",
|
|
39
|
+
"@wordpress/deprecated": "^3.35.2",
|
|
40
|
+
"@wordpress/element": "^5.12.2",
|
|
41
|
+
"@wordpress/i18n": "^4.35.2",
|
|
42
|
+
"@wordpress/icons": "^9.26.3",
|
|
43
|
+
"@wordpress/plugins": "^6.3.12",
|
|
44
|
+
"@wordpress/preferences": "^3.12.12",
|
|
45
|
+
"@wordpress/viewport": "^5.12.6",
|
|
46
46
|
"classnames": "^2.3.1"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"publishConfig": {
|
|
53
53
|
"access": "public"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "86d483d54c987f4d324a760deacb0af29fff8332"
|
|
56
56
|
}
|
|
@@ -88,6 +88,12 @@ html.interface-interface-skeleton__html-container {
|
|
|
88
88
|
// to "bleed" through the header.
|
|
89
89
|
// See https://github.com/WordPress/gutenberg/issues/32631
|
|
90
90
|
z-index: z-index(".interface-interface-skeleton__content");
|
|
91
|
+
|
|
92
|
+
// On Safari the z-index is not respected when the element is fixed.
|
|
93
|
+
// Setting it to auto fixes the problem
|
|
94
|
+
@include break-medium() {
|
|
95
|
+
z-index: auto;
|
|
96
|
+
}
|
|
91
97
|
}
|
|
92
98
|
|
|
93
99
|
.interface-interface-skeleton__secondary-sidebar,
|