diff options
| author | Mark Otto <[email protected]> | 2013-09-01 11:03:19 +0200 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-09-01 11:03:19 +0200 |
| commit | d28abc4bf15ab00c7c7587f2fd520218ed6283f1 (patch) | |
| tree | f7d4d359c30e16cd80cfb7a2e649e4e063a90648 /less/carousel.less | |
| parent | 62477653e70270ec386207f5d2d9fcfa0c66fc75 (diff) | |
| download | bootstrap-d28abc4bf15ab00c7c7587f2fd520218ed6283f1.tar.xz bootstrap-d28abc4bf15ab00c7c7587f2fd520218ed6283f1.zip | |
fixes #10115: Default carousel controls and Glyphicon controls should behave the same on small devices and up
Diffstat (limited to 'less/carousel.less')
| -rw-r--r-- | less/carousel.less | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/less/carousel.less b/less/carousel.less index de5e4c936..d9eda38e3 100644 --- a/less/carousel.less +++ b/less/carousel.less @@ -186,13 +186,17 @@ @media screen and (min-width: @screen-sm) { // Scale up the controls a smidge - .carousel-control .icon-prev, - .carousel-control .icon-next { - width: 30px; - height: 30px; - margin-top: -15px; - margin-left: -15px; - font-size: 30px; + .carousel-control { + .glyphicons-chevron-left, + .glyphicons-chevron-right + .icon-prev, + .icon-next { + width: 30px; + height: 30px; + margin-top: -15px; + margin-left: -15px; + font-size: 30px; + } } // Show and left align the captions |
