diff options
| author | Mark Otto <[email protected]> | 2012-09-30 23:17:07 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-09-30 23:17:07 -0700 |
| commit | 443b6052463285b36752f97a656be95c01650fca (patch) | |
| tree | 5c41348a85d97f0fbfc07351f4194001d18d1bca /less | |
| parent | 9872902e4784220f3add1a1af256dfc89cd6e31a (diff) | |
| download | bootstrap-443b6052463285b36752f97a656be95c01650fca.tar.xz bootstrap-443b6052463285b36752f97a656be95c01650fca.zip | |
remove -moz-box-shadow from .box-shadow() mixin, but keep -webkit since that's needed for most iOS and Android mobile browsers
Diffstat (limited to 'less')
| -rw-r--r-- | less/mixins.less | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/less/mixins.less b/less/mixins.less index 508a3c0f9..62befe695 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -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; } |
