diff options
| author | Mark Otto <[email protected]> | 2014-01-26 19:15:31 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-01-26 19:15:31 -0800 |
| commit | 16fd8cd01e73a4370b4370e42b627554c0b6cbcd (patch) | |
| tree | 1fc001b3d843f89464b99b290899008c0ac8936d /less | |
| parent | 1a36e4fa1e9d9220a242d01062941a16ef07e660 (diff) | |
| parent | 602e5f8f115b6625011e2e6c2d36c1d28715c4b9 (diff) | |
| download | bootstrap-16fd8cd01e73a4370b4370e42b627554c0b6cbcd.tar.xz bootstrap-16fd8cd01e73a4370b4370e42b627554c0b6cbcd.zip | |
Merge pull request #12398 from twbs/deprecate-box-shadow-mixin
mark .box-shadow() mixin as deprecated
Diffstat (limited to 'less')
| -rw-r--r-- | less/mixins.less | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/less/mixins.less b/less/mixins.less index 104590730..85a41ef50 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -115,6 +115,10 @@ } // Drop shadows +// +// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's +// supported browsers that have box shadow capabilities now support the +// standard `box-shadow` property. .box-shadow(@shadow) { -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1 box-shadow: @shadow; |
