aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2015-04-12 17:16:16 -0700
committerChris Rebert <[email protected]>2015-04-12 17:16:16 -0700
commitee385d5980c330889b99ff8267683a2f51a99753 (patch)
treea2ac8854b1b713744e131702907293f909e9b7ff
parent9cc9379f46f051b6aed9d25179cfa1b907d20ab1 (diff)
parente9a747246ace3255b9e9171d44a6920dd3c3abc1 (diff)
downloadbootstrap-ee385d5980c330889b99ff8267683a2f51a99753.tar.xz
bootstrap-ee385d5980c330889b99ff8267683a2f51a99753.zip
Merge pull request #16256 from twbs/fix-16247
Add px unit to perspective property value
-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 630e70870..68c37e03c 100644
--- a/dist/css/bootstrap.css
+++ b/dist/css/bootstrap.css
@@ -6261,8 +6261,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 {