🎨 [bootsier] Ajusta estilos para personalizar
This commit is contained in:
parent
674d92033c
commit
ed22d3d591
109 changed files with 171 additions and 7 deletions
24
extensions/pagetop-bootsier/static/scss/bootstrap-5.3.8/mixins/_box-shadow.scss
vendored
Normal file
24
extensions/pagetop-bootsier/static/scss/bootstrap-5.3.8/mixins/_box-shadow.scss
vendored
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
@mixin box-shadow($shadow...) {
|
||||
@if $enable-shadows {
|
||||
$result: ();
|
||||
$has-single-value: false;
|
||||
$single-value: null;
|
||||
|
||||
@each $value in $shadow {
|
||||
@if $value != null {
|
||||
@if $value == none or $value == initial or $value == inherit or $value == unset {
|
||||
$has-single-value: true;
|
||||
$single-value: $value;
|
||||
} @else {
|
||||
$result: append($result, $value, "comma");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@if $has-single-value {
|
||||
box-shadow: $single-value;
|
||||
} @else if (length($result) > 0) {
|
||||
box-shadow: $result;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue