Commit 443b6052 authored by Mark Otto's avatar Mark Otto

remove -moz-box-shadow from .box-shadow() mixin, but keep -webkit since that's...

remove -moz-box-shadow from .box-shadow() mixin, but keep -webkit since that's needed for most iOS and Android mobile browsers
parent 9872902e
...@@ -635,7 +635,6 @@ ...@@ -635,7 +635,6 @@
border: none; border: none;
border-radius: 0; border-radius: 0;
-webkit-box-shadow: none; -webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none; box-shadow: none;
} }
.nav-collapse .dropdown-menu:before, .nav-collapse .dropdown-menu:before,
...@@ -657,7 +656,6 @@ ...@@ -657,7 +656,6 @@
border-top: 1px solid #f2f2f2; border-top: 1px solid #f2f2f2;
border-bottom: 1px solid #f2f2f2; border-bottom: 1px solid #f2f2f2;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
} }
.navbar-inverse .nav-collapse .navbar-form, .navbar-inverse .nav-collapse .navbar-form,
......
This diff is collapsed.
...@@ -217,8 +217,7 @@ ...@@ -217,8 +217,7 @@
// Drop shadows // Drop shadows
.box-shadow(@shadow) { .box-shadow(@shadow) {
-webkit-box-shadow: @shadow; -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1
-moz-box-shadow: @shadow;
box-shadow: @shadow; box-shadow: @shadow;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment