mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
e8566e10c7
* Support 'null' and drop `none` with multiple args * Output a warning when use 'none' with multiple arguments * Add migration note * Update migration.md Co-authored-by: Mark Otto <markd.otto@gmail.com> Co-authored-by: XhmikosR <xhmikosr@gmail.com>
18 lines
398 B
SCSS
18 lines
398 B
SCSS
@mixin box-shadow($shadow...) {
|
|
@if $enable-shadows {
|
|
$result: ();
|
|
|
|
@each $value in $shadow {
|
|
@if $value != null {
|
|
$result: append($result, $value, "comma");
|
|
}
|
|
@if $value == none and length($shadow) > 1 {
|
|
@warn "The keyword 'none' must be used as a single argument.";
|
|
}
|
|
}
|
|
|
|
@if (length($result) > 0) {
|
|
box-shadow: $result;
|
|
}
|
|
}
|
|
}
|