2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-02 16:04:07 +03:00

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
+1 -2
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;
}