Warning, /iDDS/monitor/data/scss/bootstrap/mixins/_box-shadow.scss is written in an unsupported language. File is not indexed.
0001 @mixin box-shadow($shadow...) {
0002 @if $enable-shadows {
0003 $result: ();
0004
0005 @each $value in $shadow {
0006 @if $value != null {
0007 $result: append($result, $value, "comma");
0008 }
0009 @if $value == none and length($shadow) > 1 {
0010 @warn "The keyword 'none' must be used as a single argument.";
0011 }
0012 }
0013
0014 @if (length($result) > 0) {
0015 box-shadow: $result;
0016 }
0017 }
0018 }