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:
authorastrahov <astrahov92@me.com>2019-10-01 16:14:43 +0300
committerMartijn Cuppens <martijn.cuppens@gmail.com>2019-10-01 16:14:43 +0300
commit46e8f1a34fe00468209f46b12aac6323b5322eee (patch)
treec7b4aca847946fa87d0e84616b319eb4b3406c56 /scss/_carousel.scss
parent0a3aa08b89031a835e73b53b161ba6c6d1cab848 (diff)
Variable carousel indicator opacity (#29468)
Diffstat (limited to 'scss/_carousel.scss')
-rw-r--r--scss/_carousel.scss4
1 files changed, 2 insertions, 2 deletions
diff --git a/scss/_carousel.scss b/scss/_carousel.scss
index 0e79f179b6..020604e335 100644
--- a/scss/_carousel.scss
+++ b/scss/_carousel.scss
@@ -171,12 +171,12 @@
// Use transparent borders to increase the hit area by 10px on top and bottom.
border-top: $carousel-indicator-hit-area-height solid transparent;
border-bottom: $carousel-indicator-hit-area-height solid transparent;
- opacity: .5;
+ opacity: $carousel-indicator-opacity;
@include transition($carousel-indicator-transition);
}
.active {
- opacity: 1;
+ opacity: $carousel-indicator-active-opacity;
}
}