aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartijn Cuppens <[email protected]>2017-09-27 10:00:42 +0200
committerXhmikosR <[email protected]>2017-09-27 11:00:42 +0300
commit1d6a6c2abf4f4cdefae5741b68e78a38ef59f163 (patch)
tree3e8665fb90668e5c14ab64cbc190e502566cfca8
parent7fa20188f258787318bf5a92d0714e31a3ff3d03 (diff)
downloadbootstrap-1d6a6c2abf4f4cdefae5741b68e78a38ef59f163.tar.xz
bootstrap-1d6a6c2abf4f4cdefae5741b68e78a38ef59f163.zip
Add quotes to mapping keys (#23701)
-rw-r--r--scss/_variables.scss60
1 files changed, 30 insertions, 30 deletions
diff --git a/scss/_variables.scss b/scss/_variables.scss
index 8eebffdf8..d95b703cc 100644
--- a/scss/_variables.scss
+++ b/scss/_variables.scss
@@ -22,15 +22,15 @@ $black: #000 !default;
$grays: () !default;
$grays: map-merge((
- 100: $gray-100,
- 200: $gray-200,
- 300: $gray-300,
- 400: $gray-400,
- 500: $gray-500,
- 600: $gray-600,
- 700: $gray-700,
- 800: $gray-800,
- 900: $gray-900
+ "100": $gray-100,
+ "200": $gray-200,
+ "300": $gray-300,
+ "400": $gray-400,
+ "500": $gray-500,
+ "600": $gray-600,
+ "700": $gray-700,
+ "800": $gray-800,
+ "900": $gray-900
), $grays);
$blue: #007bff !default;
@@ -46,31 +46,31 @@ $cyan: #17a2b8 !default;
$colors: () !default;
$colors: map-merge((
- blue: $blue,
- indigo: $indigo,
- purple: $purple,
- pink: $pink,
- red: $red,
- orange: $orange,
- yellow: $yellow,
- green: $green,
- teal: $teal,
- cyan: $cyan,
- white: $white,
- gray: $gray-600,
- gray-dark: $gray-800
+ "blue": $blue,
+ "indigo": $indigo,
+ "purple": $purple,
+ "pink": $pink,
+ "red": $red,
+ "orange": $orange,
+ "yellow": $yellow,
+ "green": $green,
+ "teal": $teal,
+ "cyan": $cyan,
+ "white": $white,
+ "gray": $gray-600,
+ "gray-dark": $gray-800
), $colors);
$theme-colors: () !default;
$theme-colors: map-merge((
- primary: $blue,
- secondary: $gray-600,
- success: $green,
- info: $cyan,
- warning: $yellow,
- danger: $red,
- light: $gray-100,
- dark: $gray-800
+ "primary": $blue,
+ "secondary": $gray-600,
+ "success": $green,
+ "info": $cyan,
+ "warning": $yellow,
+ "danger": $red,
+ "light": $gray-100,
+ "dark": $gray-800
), $theme-colors);
// Set a specific jump point for requesting color jumps