Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <markd.otto@gmail.com>2022-02-16 19:50:50 +0300
committerMark Otto <otto@github.com>2022-02-16 21:36:01 +0300
commit63f75bccd8d206bb59b0e8421258ce03d298b784 (patch)
tree232fd82f82dae1242b5861fc793f61d70169e439
parent48a7160cf4e05dc18dde9cf33fa38c12d1bd2e5e (diff)
Rename dropdown-shadow to dropdown-box-shadow for consistency
-rw-r--r--scss/_dropdown.scss6
1 files changed, 3 insertions, 3 deletions
diff --git a/scss/_dropdown.scss b/scss/_dropdown.scss
index 7476acd85d..ad45b84a9f 100644
--- a/scss/_dropdown.scss
+++ b/scss/_dropdown.scss
@@ -28,7 +28,7 @@
--#{$variable-prefix}dropdown-inner-border: #{$dropdown-inner-border-radius};
--#{$variable-prefix}dropdown-divider-bg: #{$dropdown-divider-bg};
--#{$variable-prefix}dropdown-divider-margin-y: #{$dropdown-divider-margin-y};
- --#{$variable-prefix}dropdown-shadow: #{$dropdown-box-shadow};
+ --#{$variable-prefix}dropdown-box-shadow: #{$dropdown-box-shadow};
--#{$variable-prefix}dropdown-link-color: #{$dropdown-link-color};
--#{$variable-prefix}dropdown-link-hover-color: #{$dropdown-link-hover-color};
--#{$variable-prefix}dropdown-link-hover-bg: #{$dropdown-link-hover-bg};
@@ -54,7 +54,7 @@
background-clip: padding-box;
border: var(--#{$variable-prefix}dropdown-border-width) solid var(--#{$variable-prefix}dropdown-border-color);
@include border-radius(var(--#{$variable-prefix}dropdown-border-radius));
- @include box-shadow(var(--#{$variable-prefix}dropdown-shadow));
+ @include box-shadow(var(--#{$variable-prefix}dropdown-box-shadow));
&[data-bs-popper] {
top: 100%;
@@ -229,7 +229,7 @@
--#{$variable-prefix}dropdown-color: #{$dropdown-dark-color};
--#{$variable-prefix}dropdown-bg: #{$dropdown-dark-bg};
--#{$variable-prefix}dropdown-border-color: #{$dropdown-dark-border-color};
- --#{$variable-prefix}dropdown-shadow: #{$dropdown-dark-box-shadow};
+ --#{$variable-prefix}dropdown-box-shadow: #{$dropdown-dark-box-shadow};
--#{$variable-prefix}dropdown-link-color: #{$dropdown-dark-link-color};
--#{$variable-prefix}dropdown-link-hover-color: #{$dropdown-dark-link-hover-color};
--#{$variable-prefix}dropdown-divider-bg: #{$dropdown-dark-divider-bg};