Extract $carousel-icon-width variable

[skip sauce]
[skip validator]
This commit is contained in:
Chris Rebert 2016-02-16 20:46:52 -08:00
parent 4d62aa41c7
commit 3003f530c9
2 changed files with 7 additions and 5 deletions

View File

@ -125,19 +125,19 @@
top: 50%;
z-index: 5;
display: inline-block;
width: 20px;
height: 20px;
margin-top: -10px;
width: $carousel-icon-width;
height: $carousel-icon-width;
margin-top: -($carousel-icon-width / 2);
font-family: serif;
line-height: 1;
}
.icon-prev {
left: 50%;
margin-left: -10px;
margin-left: -($carousel-icon-width / 2);
}
.icon-next {
right: 50%;
margin-right: -10px;
margin-right: -($carousel-icon-width / 2);
}
.icon-prev {

View File

@ -768,6 +768,8 @@ $carousel-indicator-border-color: #fff !default;
$carousel-caption-color: #fff !default;
$carousel-icon-width: 20px !default;
// Close