-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Open
Description
Prerequisites
Please answer the following questions for yourself before submitting an issue.
- I am running the latest version (2.0.6)
- I checked the documentation and found no answer
- I checked to make sure that this issue has not already been filed
- I'm reporting the issue to the correct repository (for multi-repository projects)
Description
Bootstrap is intended to be rebranded by overwriting only a few theming variables. This behaviour is very convenient and can be easily adapted in the material kit. I noticed several cases where this is not possible.
Expected Behavior
- Sass variables can be overwritten.
- Theme colors use specified brand variables. E.g. In _bootstrap-material-design.scss
$bg-darkis expected to use bootstrap variable$darkinstead ofgray-900 - cards use primary/info/warning/... with lighten functions to create gradient variables. E.g. for
.card-header-primary:background: linear-gradient(60deg, lighten($bg-primary, 10%), darken($bg-primary, 10%));
Current Behavior
- Some Sass variables in _bootstrap-material-design.scss are not defined as !default. E.g. all
$bg-*variables - In _bootstrap-material-design.scss:
$bg-dark: $grey-900; - cards use fixed colors to create gradient. e.g. in
.card-header-primary:background: linear-gradient(60deg, $purple-400, $purple-700);
Metadata
Metadata
Assignees
Labels
No labels