mediawiki.mixins: Remove deprecated .box-shadow() mixin
Deprecated in MW 1.36 and replaced with standard `box-shadow` properties in all code repositories on our radar since. Bug: T277819 Depends-On: Id199b33339e417792837384d28ef7f8d125bea60 Change-Id: I4adeb975dbf4e203c9a41d6564b1a68c10094019
This commit is contained in:
parent
b80e8a22b5
commit
48cd9551b1
2 changed files with 3 additions and 5 deletions
|
|
@ -467,6 +467,9 @@ because of Phabricator reports.
|
|||
* The Skin::bottomScripts() method is deprecated. Please instead use
|
||||
OutputPage::getBottomScripts().
|
||||
* LinksUpdate::getTriggeringUser() now returns ?UserIdentity instead of ?User.
|
||||
* The LESS mixin `.box-shadow()` (from mediawiki.mixins.less), deprecated since
|
||||
1.36, was removed. Use CSS property `box-shadow` unprefixed for all basic
|
||||
supported browsers instead.
|
||||
|
||||
=== Deprecations in 1.37 ===
|
||||
* JobQueue::getWiki(), deprecated in 1.33, now emits deprecation warnings.
|
||||
|
|
|
|||
|
|
@ -106,11 +106,6 @@
|
|||
box-sizing: @value; // Chrome 10+, Firefox 29+, IE 8+, Safari 5.1+, Opera 10+, iOS 5+, Android 4+
|
||||
}
|
||||
|
||||
// Deprecated in MW v1.36.0, use unprefixed now.
|
||||
.box-shadow( @value ) {
|
||||
box-shadow: @value; // Chrome 10+, Firefox 4+, IE 9+, Safari 5.1+, Opera 11+, iOS 5+, Android 4+
|
||||
}
|
||||
|
||||
.column-count( @value ) {
|
||||
-webkit-column-count: @value; // Chrome 4-49, Safari 3.1-8.4, iOS 3.2-8.4
|
||||
-moz-column-count: @value; // Firefox 2-51
|
||||
|
|
|
|||
Loading…
Reference in a new issue