From: Trevor Parscal Date: Mon, 6 Dec 2010 16:08:01 +0000 (+0000) Subject: Added fixes for tipsy font size - because tips are rendering outside of the body... X-Git-Tag: 1.31.0-rc.0~33519 X-Git-Url: http://git.cyclocoop.org/%22.%24redirect_annul.%22?a=commitdiff_plain;h=8a345e31899d6752b1a453663b239b9052405dc0;p=lhc%2Fweb%2Fwiklou.git Added fixes for tipsy font size - because tips are rendering outside of the body their text size is not affected by rules for bodyContent where the text is usually adjusted up or down a final time. --- diff --git a/skins/modern/main.css b/skins/modern/main.css index 629afbc122..4c64e90fac 100644 --- a/skins/modern/main.css +++ b/skins/modern/main.css @@ -875,3 +875,8 @@ pre { margin: 0pt; padding: 0pt; } + +/* Tooltips are outside of the normal body code, so this helps make the size of the text sensible */ +.tipsy { + font-size: 130%; +} \ No newline at end of file diff --git a/skins/monobook/main.css b/skins/monobook/main.css index ab73edb329..320b5ec42b 100644 --- a/skins/monobook/main.css +++ b/skins/monobook/main.css @@ -1270,3 +1270,8 @@ div.mw-lag-warn-high { .no-text-transform { text-transform: none; } + +/* Tooltips are outside of the normal body code, so this helps make the size of the text sensible */ +.tipsy { + font-size: 127%; +} \ No newline at end of file diff --git a/skins/vector/screen.css b/skins/vector/screen.css index 4a0a8a3061..fa8cb89635 100644 --- a/skins/vector/screen.css +++ b/skins/vector/screen.css @@ -1185,3 +1185,8 @@ p.mw-ipb-conveniencelinks, p.mw-protect-editreasons, p.mw-filedelete-editreasons, p.mw-delete-editreasons { float: right; } + +/* Tooltips are outside of the normal body code, so this helps make the size of the text sensible */ +.tipsy { + font-size: 0.8em; +} \ No newline at end of file