From 1822e25f49a73dfa7118aa183965f3d40b0a96ad Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Thu, 24 Nov 2011 12:18:52 +0000 Subject: [PATCH] Follow-up r99389: Lower diacritics are invisible in titles in Indic languages Assamese, Bengali and Odiya. Add bug numbers and issue description to release notes. --- RELEASE-NOTES-1.19 | 2 ++ skins/common/shared.css | 22 ++++++++++++++++++++-- 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/RELEASE-NOTES-1.19 b/RELEASE-NOTES-1.19 index 1b958152b8..ee8a54bef7 100644 --- a/RELEASE-NOTES-1.19 +++ b/RELEASE-NOTES-1.19 @@ -191,6 +191,8 @@ changes to languages because of Bugzilla reports. * (bug 31193) Set fallback language of Assamese from Bengali to English. * Update date format for dsb and hsb: month names need the genitive. * (bug 28643) Serbian variant conversion improvements (Nikola Smolenski). +* (bug 29405, bug 30809) Lower diacritics are invisible in titles in Indic + languages Assamese, Bengali, Hindi, Malyalam and Odiya. === Other changes in 1.19 === * jquery.mwPrototypes module was renamed to jquery.mwExtension. diff --git a/skins/common/shared.css b/skins/common/shared.css index 60eb95eaf8..2bbf8e73a5 100644 --- a/skins/common/shared.css +++ b/skins/common/shared.css @@ -797,20 +797,38 @@ div.gallerytext { /* Language specific height correction for titles. Ref Bug 29405 and Bug 30809 */ /* Languages like hi or ml require slightly more vertical space to show diacritics properly */ +h1:lang(as), +h1:lang(bn), h1:lang(hi), -h1:lang(ml) { +h1:lang(ml), +h1:lang(or) { line-height: 1.5em; } +h2:lang(as), +h2:lang(bn), h2:lang(hi), h2:lang(ml), +h2:lang(or), +h3:lang(as), +h3:lang(bn), h3:lang(hi), h3:lang(ml), +h3:lang(or), +h4:lang(as), +h4:lang(bn), h4:lang(hi), h4:lang(ml), +h4:lang(or), +h5:lang(as), +h5:lang(bn), h5:lang(hi), h5:lang(ml), +h5:lang(or), +h6:lang(as), +h6:lang(bn), h6:lang(hi), -h6:lang(ml) { +h6:lang(ml), +h6:lang(or) { line-height: 1.2em; } -- 2.20.1