aboutsummaryrefslogtreecommitdiff
path: root/less/carousel.less
diff options
context:
space:
mode:
authorfat <[email protected]>2013-07-18 01:08:19 -0700
committerfat <[email protected]>2013-07-18 01:08:19 -0700
commit6ec8a1e44f6b58ed57d015916a4fe39bfb0e2340 (patch)
tree8480da0e7c249bf59f6a13e9f108d1429e1d4741 /less/carousel.less
parent4b40ee692dc066f2ad3c4dd96af67a83475f5cbe (diff)
parent181b27677492050adceaa52fe972115515759f07 (diff)
downloadbootstrap-6ec8a1e44f6b58ed57d015916a4fe39bfb0e2340.tar.xz
bootstrap-6ec8a1e44f6b58ed57d015916a4fe39bfb0e2340.zip
Merge branch '3.0.0-wip' of github.com:twitter/bootstrap into 3.0.0-wip
Conflicts: docs/assets/js/bootstrap.min.js
Diffstat (limited to 'less/carousel.less')
-rw-r--r--less/carousel.less19
1 files changed, 17 insertions, 2 deletions
diff --git a/less/carousel.less b/less/carousel.less
index 8834c6f7b..40d7e277e 100644
--- a/less/carousel.less
+++ b/less/carousel.less
@@ -99,7 +99,9 @@
}
// Toggles
- .glyphicon {
+ .glyphicon,
+ .icon-prev,
+ .icon-next {
position: absolute;
top: 50%;
left: 50%;
@@ -110,6 +112,17 @@
margin-top: -10px;
margin-left: -10px;
}
+ // Non-glyphicon toggles
+ .icon-prev {
+ &:before {
+ content: '\2039';
+ }
+ }
+ .icon-next {
+ &:before {
+ content: '\203a';
+ }
+ }
}
// Optional indicator pips
@@ -167,7 +180,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;