Refactor CSS to fix various namespace clashes and improve compatibility with newer Bootstrap CSS libraries #1433
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
FormBuilder has an embedded Bootstrap 3 stylesheet which can cause clashes with HTML elements outside of the formBuilder and formRender containers.
This PR does some refactoring of the style and introduces a modification to an option flag to selectively disable Bootstrap 3 styles into the form.
Refactoring: Move classes under the .rendered-form and .form-wrap.form-builder containers. This ensures we are only setting styles for Elements within our container.
Fixes #594
Fixes #727
Refactoring: Tooltips styles de-duplicated and moved under their own includable scss file to share between form-render and form-builder
Feat: By moving the embedding of Bootstrap 3 styles under an enabling class .formbuilder-embedded-bootstrap we can selectively disable those styles by removing that class. This can be done by setting
disableInjectedStyle
to'bootstrap'
, effectively changingdisableInjectedStyle
from a boolean to a boolean|string option. As disableInjectedStyle defaults to false, the Bootstrap classes will be embeddedTesting has shown no oddities on either Builder nor Render.