1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-15 01:55:46 +02:00

Compressed Sass output support (#29702)

This commit is contained in:
Martijn Cuppens
2019-11-24 20:20:03 +01:00
committed by GitHub
parent 0caed940a5
commit 787256cae4

View File

@@ -77,7 +77,7 @@ $utilities: map-merge(
"border-color": ( "border-color": (
property: border-color, property: border-color,
class: border, class: border,
values: map-merge($theme-colors, (white: $white)) values: map-merge($theme-colors, ("white": $white))
), ),
// Sizing utilities // Sizing utilities
"width": ( "width": (
@@ -385,12 +385,12 @@ $utilities: map-merge(
values: map-merge( values: map-merge(
$theme-colors, $theme-colors,
( (
white: $white, "white": $white,
body: $body-color, "body": $body-color,
muted: $text-muted, "muted": $text-muted,
black-50: rgba($black, .5), "black-50": rgba($black, .5),
white-50: rgba($white, .5), "white-50": rgba($white, .5),
reset: inherit, "reset": inherit,
) )
) )
), ),
@@ -410,9 +410,9 @@ $utilities: map-merge(
values: map-merge( values: map-merge(
$theme-colors, $theme-colors,
( (
body: $body-bg, "body": $body-bg,
white: $white, "white": $white,
transparent: transparent "transparent": transparent
) )
) )
), ),