From 8a345e31899d6752b1a453663b239b9052405dc0 Mon Sep 17 00:00:00 2001 From: Trevor Parscal Date: Mon, 6 Dec 2010 16:08:01 +0000 Subject: [PATCH] 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. --- skins/modern/main.css | 5 +++++ skins/monobook/main.css | 5 +++++ skins/vector/screen.css | 5 +++++ 3 files changed, 15 insertions(+) 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 -- 2.20.1