@wordpress/edit-site 6.29.1-next.f34ab90e9.0 → 6.30.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/build/components/global-styles/font-library-modal/context.js +1 -0
- package/build/components/global-styles/font-library-modal/context.js.map +1 -1
- package/build/components/global-styles/screen-style-variations.js +0 -8
- package/build/components/global-styles/screen-style-variations.js.map +1 -1
- package/build/components/sidebar/index.js +2 -0
- package/build/components/sidebar/index.js.map +1 -1
- package/build-module/components/global-styles/font-library-modal/context.js +1 -0
- package/build-module/components/global-styles/font-library-modal/context.js.map +1 -1
- package/build-module/components/global-styles/screen-style-variations.js +1 -9
- package/build-module/components/global-styles/screen-style-variations.js.map +1 -1
- package/build-module/components/sidebar/index.js +2 -0
- package/build-module/components/sidebar/index.js.map +1 -1
- package/build-style/posts-rtl.css +61 -8
- package/build-style/posts.css +61 -8
- package/build-style/style-rtl.css +61 -8
- package/build-style/style.css +61 -8
- package/package.json +41 -41
- package/src/components/global-styles/font-library-modal/context.js +1 -0
- package/src/components/global-styles/screen-style-variations.js +1 -7
- package/src/components/layout/style.scss +4 -4
- package/src/components/sidebar/index.js +2 -0
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -207,10 +207,10 @@ html.canvas-mode-edit-transition::view-transition-group(toggle) {
|
|
|
207
207
|
content: "";
|
|
208
208
|
display: block;
|
|
209
209
|
position: absolute;
|
|
210
|
-
top:
|
|
211
|
-
right:
|
|
212
|
-
bottom:
|
|
213
|
-
left:
|
|
210
|
+
top: $grid-unit-10 + $border-width;
|
|
211
|
+
right: $grid-unit-10 + $border-width;
|
|
212
|
+
bottom: $grid-unit-10 + $border-width;
|
|
213
|
+
left: $grid-unit-20 + $border-width;
|
|
214
214
|
border-radius: $radius-medium;
|
|
215
215
|
box-shadow: none;
|
|
216
216
|
|
|
@@ -16,6 +16,8 @@ import {
|
|
|
16
16
|
import { focus } from '@wordpress/dom';
|
|
17
17
|
|
|
18
18
|
export const SidebarNavigationContext = createContext( () => {} );
|
|
19
|
+
SidebarNavigationContext.displayName = 'SidebarNavigationContext';
|
|
20
|
+
|
|
19
21
|
// Focus a sidebar element after a navigation. The element to focus is either
|
|
20
22
|
// specified by `focusSelector` (when navigating back) or it is the first
|
|
21
23
|
// tabbable element (usually the "Back" button).
|