mirror of
https://github.com/twbs/bootstrap.git
synced 2025-08-12 00:24:03 +02:00
box-shadow mixin fix (#28004)
This commit is contained in:
@@ -2,9 +2,15 @@
|
|||||||
@if $enable-shadows {
|
@if $enable-shadows {
|
||||||
$result: ();
|
$result: ();
|
||||||
|
|
||||||
@for $i from 1 through length($shadow) {
|
@if (length($shadow) == 1) {
|
||||||
@if nth($shadow, $i) != "none" {
|
// We can pass `@include box-shadow(none);`
|
||||||
$result: append($result, nth($shadow, $i), "comma");
|
$result: $shadow;
|
||||||
|
} @else {
|
||||||
|
// Filter to avoid invalid properties for example `box-shadow: none, 1px 1px black;`
|
||||||
|
@for $i from 1 through length($shadow) {
|
||||||
|
@if nth($shadow, $i) != "none" {
|
||||||
|
$result: append($result, nth($shadow, $i), "comma");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@if (length($result) > 0) {
|
@if (length($result) > 0) {
|
||||||
|
Reference in New Issue
Block a user