mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2025-07-25 15:39:59 +03:00
fix missing brands overrides
This commit is contained in:
parent
5677a3334f
commit
afed0af07f
|
@ -20,6 +20,7 @@ $bmd-label-color: $gray-light !default;
|
|||
$bmd-label-color-inner-focus: $gray !default; // e.g. radio label or text-muted not a control-label which is primary
|
||||
|
||||
// Bootstrap Material Design default colors (these can be override by user)
|
||||
$theme-colors: () !default;
|
||||
$theme-colors: map-merge((
|
||||
primary: $teal,
|
||||
success: $green,
|
||||
|
|
|
@ -2,13 +2,13 @@
|
|||
//
|
||||
// Define colors for form feedback states and, by default, alerts.
|
||||
$state-success-text: $bmd-inverse !default;
|
||||
$state-success-bg: $brand-success !default;
|
||||
$state-success-bg: map-get($theme-colors, success) !default;
|
||||
|
||||
$state-info-text: $bmd-inverse !default;
|
||||
$state-info-bg: $brand-info !default;
|
||||
$state-info-bg: map-get($theme-colors, info) !default;
|
||||
|
||||
$state-warning-text: $bmd-inverse !default;
|
||||
$state-warning-bg: $brand-warning !default;
|
||||
$state-warning-bg: map-get($theme-colors, warning) !default;
|
||||
|
||||
$state-danger-text: $bmd-inverse !default;
|
||||
$state-danger-bg: $brand-danger !default;
|
||||
$state-danger-bg: map-get($theme-colors, danger) !default;
|
||||
|
|
Loading…
Reference in New Issue
Block a user