Skip to content

Commit

Permalink
Fix nesting deprecation, fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
ronilaukkarinen committed Sep 10, 2024
1 parent c09022e commit 0c54d23
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### [Unreleased]

* Add unit tests for gulp devstyles
* Fix nesting deprecation, fix build

### 9.4.3: 2024-09-06

* Fix navigation rules leaking to other navs, Fixes T-1644
Expand Down
3 changes: 2 additions & 1 deletion css/dev/gutenberg-editor-styles.css

Large diffs are not rendered by default.

9 changes: 6 additions & 3 deletions sass/gutenberg/_editor.scss
Original file line number Diff line number Diff line change
Expand Up @@ -40,19 +40,22 @@
text-decoration: inherit;
}

// Prevent horizontal scrolling
.editor-styles-wrapper {
overflow-x: hidden;
}

// Editor exceptions below
// These styles are NO USE to front-end
// Need to be right after general, because after typography comes block styles
// stylelint-disable-next-line
.editor-styles-wrapper {
// Import typography related styles inside blocks
@import 'layout/typography';

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

// Prevent horizontal scrolling
overflow-x: hidden;

// Fix acf icons visibility issue
.acf-icon {
// stylelint-disable-next-line
Expand Down

0 comments on commit 0c54d23

Please sign in to comment.