From 0e26cd359c567f822fe201206baf5f12171a5ab1 Mon Sep 17 00:00:00 2001 From: Entlinkt Date: Thu, 12 Jun 2014 08:04:37 +0000 Subject: [PATCH] Vector: Workaround for legacy IE font-sizing issues In IE <= 7, 'Ctrl' + '+' scales the font size in far too large steps if the root element's font size is given in the 'em' unit. Everything becomes normal if the root element's font-size is given in '%'. This should not have any effect in other browsers. Bug: 24515 Change-Id: I5cc864d73935a02713075840b7ff80000b3ae88a --- skins/vector/variables.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skins/vector/variables.less b/skins/vector/variables.less index 41cb1dab9d..b17d15cfcd 100644 --- a/skins/vector/variables.less +++ b/skins/vector/variables.less @@ -1,4 +1,4 @@ -@html-font-size: 1em; +@html-font-size: 100%; // Page content // FIXME: Use global variable since Echo and CentralNotice use this variable -- 2.20.1