Massaf has uploaded a new change for review. https://gerrit.wikimedia.org/r/53468
Change subject: Fix bug #45527: task columns display vertically on IE6 and 7 ...................................................................... Fix bug #45527: task columns display vertically on IE6 and 7 See bug for details: https://bugzilla.wikimedia.org/show_bug.cgi?id=45527 Solution description: http://mathiasbynens.be/notes/safe-css-hacks#css-hacks http://stackoverflow.com/a/5838575 Change-Id: I8e5979f1dcc184cd5a8a478a32f5c0420f1d8d00 --- M resources/ext.gettingstarted.css 1 file changed, 2 insertions(+), 0 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/GettingStarted refs/changes/68/53468/1 diff --git a/resources/ext.gettingstarted.css b/resources/ext.gettingstarted.css index cc96c7d..b8b2701 100644 --- a/resources/ext.gettingstarted.css +++ b/resources/ext.gettingstarted.css @@ -43,6 +43,8 @@ #onboarding-tasks li { display: inline-block; + *display: inline; /* IE7 and below */ + zoom: 1; /* IE7 and below */ margin-right: 3em; width: 16em; text-align: center; -- To view, visit https://gerrit.wikimedia.org/r/53468 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I8e5979f1dcc184cd5a8a478a32f5c0420f1d8d00 Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/extensions/GettingStarted Gerrit-Branch: master Gerrit-Owner: Massaf <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
