From: kaldari Date: Wed, 5 Jun 2013 22:24:03 +0000 (-0700) Subject: Move post-edit font-family rule to Vector-specific selector X-Git-Tag: 1.31.0-rc.0~19464^2 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/categories/modifier.php?a=commitdiff_plain;h=3c84a5abd46b4cb34a534f5a0250fdd1eaab34e3;p=lhc%2Fweb%2Fwiklou.git Move post-edit font-family rule to Vector-specific selector The post-edit confirmation message is rendered in the same font-family across skins due to the font-family rule not being scoped to Vector. This change moves the font-family rule to a Vector-specific selector, making the font-family in other skins the inherited one. Change-Id: I6dd0d0aa5fc6f4773529bec416a7ab35606a1bbc --- diff --git a/resources/mediawiki.action/mediawiki.action.view.postEdit.css b/resources/mediawiki.action/mediawiki.action.view.postEdit.css index 1e531bf841..d693d80ffc 100644 --- a/resources/mediawiki.action/mediawiki.action.view.postEdit.css +++ b/resources/mediawiki.action/mediawiki.action.view.postEdit.css @@ -12,7 +12,6 @@ top: 0.6em; left: -50%; padding: .6em 3.6em .6em 1.1em; - font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 0.8em; line-height: 1.5625em; color: #626465; @@ -34,6 +33,10 @@ transition: all 0.25s ease-in-out; } +.skin-vector .postedit { + font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; +} + .skin-monobook .postedit { top: 3em !important; }