fixes #7367: slightly larger carousel indicators

This commit is contained in:
Mark Otto 2013-07-01 18:16:59 -07:00
parent 7ad9fbef8b
commit c9df1db502
2 changed files with 16 additions and 12 deletions

View File

@ -4414,24 +4414,26 @@ a.list-group-item.active > .badge,
z-index: 15;
width: 100px;
padding-left: 0;
margin: 0 0 0 -50px;
margin-left: -50px;
text-align: center;
list-style: none;
}
.carousel-indicators li {
display: inline-block;
width: 8px;
height: 8px;
margin-right: 0;
margin-left: 0;
width: 10px;
height: 10px;
margin: 1px;
text-indent: -999px;
cursor: pointer;
border: 1px solid #fff;
border-radius: 5px;
border-radius: 10px;
}
.carousel-indicators .active {
width: 12px;
height: 12px;
margin: 0;
background-color: #fff;
}

View File

@ -120,23 +120,25 @@
left: 50%;
z-index: 15;
width: 100px;
margin: 0 0 0 -50px;
margin-left: -50px;
padding-left: 0;
list-style: none;
text-align: center;
li {
display: inline-block;
width: 8px;
height: 8px;
margin-left: 0;
margin-right: 0;
width: 10px;
height: 10px;
margin: 1px;
text-indent: -999px;
border: 1px solid #fff;
border-radius: 5px;
border-radius: 10px;
cursor: pointer;
}
.active {
margin: 0;
width: 12px;
height: 12px;
background-color: #fff;
}
}