VolkerE has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/248584

Change subject: Remove unnecessary IE10beta vendor-prefixes from OOjs UI
......................................................................

Remove unnecessary IE10beta vendor-prefixes from OOjs UI

Removing `-ms-transition` & `-ms-animation` from OOjs UI
as IE10 final understands unprefixed properties.

Bug: T116453
Change-Id: I692c88cfa97954b714f70c5f22aaac07d5012399
---
M src/styles/common.less
1 file changed, 1 insertion(+), 3 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/oojs/ui refs/changes/84/248584/1

diff --git a/src/styles/common.less b/src/styles/common.less
index 83324af..bd97bc6 100644
--- a/src/styles/common.less
+++ b/src/styles/common.less
@@ -39,7 +39,6 @@
        @value: ~`"@{arguments}".replace(/[\[\]]|\,\sX/g, '')`;
        -webkit-animation: @value;
        -moz-animation: @value;
-       -ms-animation: @value;
        -o-animation: @value;
        animation: @value;
 }
@@ -48,7 +47,6 @@
        @value: ~`"@{arguments}".replace(/[\[\]]|\,\sX/g, '')`;
        -webkit-transition: @value;
        -moz-transition: @value;
-       -ms-transition: @value;
        -o-transition: @value;
        transition: @value;
 }
@@ -56,7 +54,7 @@
 .oo-ui-transform( @string ) {
        -webkit-transform: @string;
        -moz-transform: @string;
-       -ms-transform: @string;
+       -ms-transform: @string; //IE9 only
        -o-transform: @string;
        transform: @string;
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/248584
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I692c88cfa97954b714f70c5f22aaac07d5012399
Gerrit-PatchSet: 1
Gerrit-Project: oojs/ui
Gerrit-Branch: master
Gerrit-Owner: VolkerE <[email protected]>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to