diff options
| author | Mark Otto <[email protected]> | 2013-07-18 00:43:48 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-07-18 00:43:48 -0700 |
| commit | 1363ffa473a7f68e540563632aaf8293cf1be5fc (patch) | |
| tree | 2cec1c2cc4ab9a0fae56c12c2fb05a32485dbb53 /less | |
| parent | e7bc9e1c3d60c2ac748896fcc0e31855f63590ef (diff) | |
| parent | 8a84da6341e19011ce8f8e518d7b1cb7f0931da5 (diff) | |
| download | bootstrap-1363ffa473a7f68e540563632aaf8293cf1be5fc.tar.xz bootstrap-1363ffa473a7f68e540563632aaf8293cf1be5fc.zip | |
Merge branch '3.0.0-wip' of https://github.com/mauricew/bootstrap into mauricew-3.0.0-wip
Diffstat (limited to 'less')
| -rw-r--r-- | less/carousel.less | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/less/carousel.less b/less/carousel.less index 8834c6f7b..d41fc07ad 100644 --- a/less/carousel.less +++ b/less/carousel.less @@ -99,7 +99,7 @@ } // Toggles - .glyphicon { + .glyphicon, .icon-prev, .icon-next { position: absolute; top: 50%; left: 50%; @@ -110,6 +110,17 @@ margin-top: -10px; margin-left: -10px; } + // Non-glyphicon toggles + .icon-prev { + &:before { + content: '\00ab'; + } + } + .icon-next { + &:before { + content: '\00bb'; + } + } } // Optional indicator pips @@ -167,7 +178,9 @@ @media screen and (min-width: @screen-tablet) { // Scale up the controls a smidge - .carousel-control .glyphicon { + .carousel-control .glyphicon, + .carousel-control .icon-prev, + .carousel-control .icon-next { width: 30px; height: 30px; margin-top: -15px; |
