mirror of
https://github.com/twbs/bootstrap.git
synced 2025-08-17 02:54:01 +02:00
Fix entirely #38202
This commit is contained in:
@@ -44,10 +44,10 @@
|
||||
border-color: var(--#{$prefix}input-focus-border-color, $input-focus-border-color);
|
||||
outline: 0;
|
||||
@if $enable-shadows {
|
||||
@include box-shadow($input-box-shadow, $input-focus-box-shadow);
|
||||
@include box-shadow($input-box-shadow, var(--#{$prefix}input-focus-box-shadow, $input-focus-box-shadow));
|
||||
} @else {
|
||||
// Avoid using mixin so we can pass custom focus shadow properly
|
||||
box-shadow: $input-focus-box-shadow;
|
||||
box-shadow: var(--#{$prefix}input-focus-box-shadow, $input-focus-box-shadow);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user