1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-09-01 09:22:55 +02:00

Variable carousel indicator opacity (#29468)

This commit is contained in:
astrahov
2019-10-01 18:14:43 +05:00
committed by Martijn Cuppens
parent 0a3aa08b89
commit 46e8f1a34f
2 changed files with 4 additions and 2 deletions

View File

@@ -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;
}
}