From 3c84a5abd46b4cb34a534f5a0250fdd1eaab34e3 Mon Sep 17 00:00:00 2001 From: kaldari Date: Wed, 5 Jun 2013 15:24:03 -0700 Subject: [PATCH] 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 --- .../mediawiki.action/mediawiki.action.view.postEdit.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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; } -- 2.20.1