aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2015-04-07 18:13:09 -0700
committerChris Rebert <[email protected]>2015-04-07 18:13:21 -0700
commite9a747246ace3255b9e9171d44a6920dd3c3abc1 (patch)
tree88f0ebf0c75f3cccbeb7ac98d38077870f3368a1
parent6866b1733ab155903b80ab6c7890c2882830885b (diff)
downloadbootstrap-e9a747246ace3255b9e9171d44a6920dd3c3abc1.tar.xz
bootstrap-e9a747246ace3255b9e9171d44a6920dd3c3abc1.zip
add px unit to perspective property value; fixes #16247
[skip sauce] [skip validator]
-rw-r--r--dist/css/bootstrap.css4
-rw-r--r--less/carousel.less2
2 files changed, 3 insertions, 3 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css
index 1baf38df7..902f344dc 100644
--- a/dist/css/bootstrap.css
+++ b/dist/css/bootstrap.css
@@ -6241,8 +6241,8 @@ button.close {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
- -webkit-perspective: 1000;
- perspective: 1000;
+ -webkit-perspective: 1000px;
+ perspective: 1000px;
}
.carousel-inner > .item.next,
.carousel-inner > .item.active.right {
diff --git a/less/carousel.less b/less/carousel.less
index 4bbe946d3..6458297c6 100644
--- a/less/carousel.less
+++ b/less/carousel.less
@@ -29,7 +29,7 @@
@media all and (transform-3d), (-webkit-transform-3d) {
.transition-transform(~'0.6s ease-in-out');
.backface-visibility(~'hidden');
- .perspective(1000);
+ .perspective(1000px);
&.next,
&.active.right {