jenkins-bot has submitted this change and it was merged. Change subject: make css backwards compatible with old html ......................................................................
make css backwards compatible with old html Loading them without this commit shows breakage in the header as shown in http://imgur.com/vY20Xqf Applying this fix, fixes the cached versions of the page. Added FIXME with suggested removal time (assuming deployment next Tuesday) Change-Id: I4dd7dc95ac8ccfbcbb7fa9296873642d639fd945 --- M less/common/ui.less M stylesheets/common/ui.css 2 files changed, 4 insertions(+), 0 deletions(-) Approvals: awjrichards: Verified; Looks good to me, approved jenkins-bot: Verified diff --git a/less/common/ui.less b/less/common/ui.less index 1f66788..16fa16f 100644 --- a/less/common/ui.less +++ b/less/common/ui.less @@ -8,6 +8,7 @@ height: @headerHeight; } +#mw-mf-header, // FIXME: This line deals with caching problems expected to be deployed 7th May 2013 (kill with fire) .header { z-index: 2; color: black; diff --git a/stylesheets/common/ui.css b/stylesheets/common/ui.css index 668a9f3..b7cc0c2 100644 --- a/stylesheets/common/ui.css +++ b/stylesheets/common/ui.css @@ -223,6 +223,7 @@ #mw-mf-sq { height: 46px; } +#mw-mf-header, .header { z-index: 2; color: black; @@ -241,7 +242,9 @@ position: relative; padding: 0 40px 0 40px; } +#mw-mf-header h1, .header h1, +#mw-mf-header h2, .header h2 { font-size: 1.6em; color: #000000; -- To view, visit https://gerrit.wikimedia.org/r/62646 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: I4dd7dc95ac8ccfbcbb7fa9296873642d639fd945 Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/extensions/MobileFrontend Gerrit-Branch: production Gerrit-Owner: awjrichards <[email protected]> Gerrit-Reviewer: Jdlrobson <[email protected]> Gerrit-Reviewer: awjrichards <[email protected]> Gerrit-Reviewer: jenkins-bot _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
