remove -moz-box-shadow from .box-shadow() mixin, but keep -webkit since that's needed for most iOS and Android mobile browsers

This commit is contained in:
Mark Otto
2012-09-30 23:17:07 -07:00
parent 9872902e47
commit 443b605246
3 changed files with 2 additions and 43 deletions

View File

@@ -217,8 +217,7 @@
// Drop shadows
.box-shadow(@shadow) {
-webkit-box-shadow: @shadow;
-moz-box-shadow: @shadow;
-webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1
box-shadow: @shadow;
}