Problem/Motivation
Usually, all themes add the block plugin id to the list of the block classes, for example the Olivero theme core/themes/olivero/templates/block/block.html.twig:
set classes = [
'block',
'block-' ~ configuration.provider|clean_class,
'block-' ~ plugin_id|clean_class,
layout ? 'layout--' ~ layout|clean_class,
]
Without this, the block CSS selectors from some modules stop working.
Proposed resolution
Would be great to set the same list of classes as in the core theme.
Issue fork flexistyle_bootstrap-3555381
Show commands
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #3
murzCreated a MR with fix https://git.drupalcode.org/project/flexistyle_bootstrap/-/merge_requests/13 - please review.
Comment #7
anoopsingh92Comment #9
murzThank you!