mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 01:16:44 +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;
|
$card-group-margin: .25rem;
|
||||||
|
|
||||||
$theme-colors: (
|
// stylelint-disable
|
||||||
|
$theme-colors: () !default;
|
||||||
|
$theme-colors: map-merge((
|
||||||
primary: $primary,
|
primary: $primary,
|
||||||
secondary: $gray-200,
|
secondary: $gray-200,
|
||||||
success: $success,
|
success: $success,
|
||||||
|
@ -69,7 +71,8 @@ $theme-colors: (
|
||||||
danger: $danger,
|
danger: $danger,
|
||||||
light: $gray-100,
|
light: $gray-100,
|
||||||
dark: $gray-800
|
dark: $gray-800
|
||||||
);
|
), $theme-colors);
|
||||||
|
// stylelint-enable
|
||||||
|
|
||||||
// Import FontAwesome.
|
// Import FontAwesome.
|
||||||
@import "fontawesome";
|
@import "fontawesome";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue