-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(core): move Bootstrap-related CSS to external
Declare styles for overriding Bootstrap defaults in new external CSS file override_bootstrap.min.css instead of in an internal stylesheet in a separate template (partial) whose only purpose is to include styles.
- Loading branch information
Showing
3 changed files
with
7 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/* override of Bootstrap 4.6.2 generated (min) version to partially | ||
fix an issue with select2 | ||
TODO remove after move to Boostrap 5 */ | ||
.select2-container--default .select2-selection span.select2-selection__rendered { | ||
line-height: initial; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,9 +3,3 @@ | |
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" | ||
integrity="sha384-xOolHFLEh07PJGoPkLv1IbcEPTNtaed2xpHsD9ESMhqIYd0nLMwNLD69Npy4HI+N" | ||
crossorigin="anonymous"> | ||
{# this is an override to partially fix an css issue with select2, shoule be removed when move to boostrap5 #} | ||
<style> | ||
.select2-container--default .select2-selection span.select2-selection__rendered { | ||
line-height: initial; | ||
} | ||
</style> |