- Issue created by @dom18fr
- @dom18fr opened merge request.
- 🇧🇪Belgium ducktape
Duplicate of https://www.drupal.org/project/paragraphs/issues/3331203 🐛 Core 9.5.0 causing broken-looking styling (Legacy widget, with Seven) Fixed
Entityreference widget dropdown button css is broken since core 9.5
From this commit https://github.com/drupal/drupal/commit/2e43a28e95070688d6b0914d57700544...
There is more qualification on the dropbutton-widget class, so the override
.js .field--widget-entity-reference-paragraphs .dropbutton-widget {
position: relative;
}
in paragraphs.admin.css does not work anymore.
It results in a misposition of the dropdown buttons, it appears out of the row on the right
The issue appears with seven admin theme using paragraph widget and dropdown buttons.
in paragraphs.admin.css, replacing :
.js .field--widget-entity-reference-paragraphs .dropbutton-widget {
position: relative;
}
with :
.js .field--widget-entity-reference-paragraphs .dropbutton-multiple .dropbutton-widget {
position: relative;
}
Fixes the bug.
Create a patch.
none
none
none
Active
1.15
Code
Duplicate of https://www.drupal.org/project/paragraphs/issues/3331203 🐛 Core 9.5.0 causing broken-looking styling (Legacy widget, with Seven) Fixed