Commit d28abc4b authored by Mark Otto's avatar Mark Otto

fixes #10115: Default carousel controls and Glyphicon controls should behave...

fixes #10115: Default carousel controls and Glyphicon controls should behave the same on small devices and up
parent 62477653
...@@ -6223,7 +6223,8 @@ body.modal-open, ...@@ -6223,7 +6223,8 @@ body.modal-open,
} }
@media screen and (min-width: 768px) { @media screen and (min-width: 768px) {
.carousel-control .icon-prev, .carousel-control .glyphicons-chevron-left,
.carousel-control .glyphicons-chevron-right .icon-prev,
.carousel-control .icon-next { .carousel-control .icon-next {
width: 30px; width: 30px;
height: 30px; height: 30px;
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -186,14 +186,18 @@ ...@@ -186,14 +186,18 @@
@media screen and (min-width: @screen-sm) { @media screen and (min-width: @screen-sm) {
// Scale up the controls a smidge // Scale up the controls a smidge
.carousel-control .icon-prev, .carousel-control {
.carousel-control .icon-next { .glyphicons-chevron-left,
.glyphicons-chevron-right
.icon-prev,
.icon-next {
width: 30px; width: 30px;
height: 30px; height: 30px;
margin-top: -15px; margin-top: -15px;
margin-left: -15px; margin-left: -15px;
font-size: 30px; font-size: 30px;
} }
}
// Show and left align the captions // Show and left align the captions
.carousel-caption { .carousel-caption {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment