Skip to content

Commit 0c54d23

Browse files
Fix nesting deprecation, fix build
1 parent c09022e commit 0c54d23

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### [Unreleased]
2+
3+
* Add unit tests for gulp devstyles
4+
* Fix nesting deprecation, fix build
5+
16
### 9.4.3: 2024-09-06
27

38
* Fix navigation rules leaking to other navs, Fixes T-1644

css/dev/gutenberg-editor-styles.css

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sass/gutenberg/_editor.scss

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,19 +40,22 @@
4040
text-decoration: inherit;
4141
}
4242

43+
// Prevent horizontal scrolling
44+
.editor-styles-wrapper {
45+
overflow-x: hidden;
46+
}
47+
4348
// Editor exceptions below
4449
// These styles are NO USE to front-end
4550
// Need to be right after general, because after typography comes block styles
51+
// stylelint-disable-next-line
4652
.editor-styles-wrapper {
4753
// Import typography related styles inside blocks
4854
@import 'layout/typography';
4955

5056
// Import gravity forms inside Gutenberg editor
5157
@import 'features/gravity-forms';
5258

53-
// Prevent horizontal scrolling
54-
overflow-x: hidden;
55-
5659
// Fix acf icons visibility issue
5760
.acf-icon {
5861
// stylelint-disable-next-line

0 commit comments

Comments
 (0)