mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 08:56:36 +02:00
MDL-65299 theme_classic: Allow default.scss theme-colors override.
This commit is contained in:
parent
dbbbeb89bf
commit
da37a3add1
1 changed files with 5 additions and 2 deletions
|
@ -60,7 +60,9 @@ $alert-border-width: 0 !default;
|
|||
|
||||
$card-group-margin: .25rem;
|
||||
|
||||
$theme-colors: (
|
||||
// stylelint-disable
|
||||
$theme-colors: () !default;
|
||||
$theme-colors: map-merge((
|
||||
primary: $primary,
|
||||
secondary: $gray-200,
|
||||
success: $success,
|
||||
|
@ -69,7 +71,8 @@ $theme-colors: (
|
|||
danger: $danger,
|
||||
light: $gray-100,
|
||||
dark: $gray-800
|
||||
);
|
||||
), $theme-colors);
|
||||
// stylelint-enable
|
||||
|
||||
// Import FontAwesome.
|
||||
@import "fontawesome";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue