From: MatmaRex Date: Tue, 30 Apr 2013 09:30:15 +0000 (+0200) Subject: skins: Ensure headings are not smaller than body text X-Git-Tag: 1.31.0-rc.0~19813 X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_ecrire%28%22upgrade%22%2C%22reinstall=non%22%29%20.%20%22?a=commitdiff_plain;h=237787cbadaadf31f5d71733ee8bac5b463ba292;p=lhc%2Fweb%2Fwiklou.git skins: Ensure headings are not smaller than body text A heading that's 80% the size of regular text? That's just weird. Scaled the sizes slightly to give h6 100% of body text size. Change-Id: I45bf6e8c8ec01cb5fdc8392b4944e970e130ce38 --- diff --git a/skins/common/commonElements.css b/skins/common/commonElements.css index 2fa0cbaf09..a1e809d930 100644 --- a/skins/common/commonElements.css +++ b/skins/common/commonElements.css @@ -116,13 +116,13 @@ h4 .editsection { font-size: 86%; font-weight: normal; } h5 { - font-size: 100%; + font-size: 105%; } h5 .editsection { font-weight: normal; } h6 { - font-size: 80%; + font-size: 100%; } h6 .editsection { font-size: 125%; diff --git a/skins/common/oldshared.css b/skins/common/oldshared.css index 6dcdf6f168..1f7d16d690 100644 --- a/skins/common/oldshared.css +++ b/skins/common/oldshared.css @@ -11,8 +11,9 @@ h1 { font-size: 2em; } h2 { font-size: 1.5em; } h3 { font-size: 1.17em; } -h5 { font-size: .83em; } -h6 { font-size: .75em; } +h4 { font-size: 1.11em; } +h5 { font-size: 1.05em; } +h6 { font-size: 1em; } h1, h2, h3, h4, h5, h6 { font-weight: bolder; } @@ -458,4 +459,4 @@ html > body.rtl div#bodyContent ul#filetoc { display: block; } -/* RTL specific CSS ends here **/ \ No newline at end of file +/* RTL specific CSS ends here **/