Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix block toolbar dropdown separator color. #60336

Merged
merged 3 commits into from Apr 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/components/CHANGELOG.md
Expand Up @@ -4,6 +4,7 @@

### Bug Fix

- `Dropdown`: Fix bug with separator styling. ([#60336](https://github.com/WordPress/gutenberg/pull/60336)).
- `InputControl`: Ignore IME events when `isPressEnterToChange` is enabled ([#60090](https://github.com/WordPress/gutenberg/pull/60090)).
- `TextControl`: Apply zero margin to input element ([#60282](https://github.com/WordPress/gutenberg/pull/60282)).

Expand Down
6 changes: 3 additions & 3 deletions packages/components/src/dropdown/style.scss
Expand Up @@ -31,9 +31,9 @@
margin-top: 0;
border-top: $border-width solid $gray-400;
padding: $grid-unit-10;
}

.is-alternate & {
border-color: $gray-900;
}
&.is-alternate .components-menu-group + .components-menu-group {
border-color: $gray-900;
}
}