https://bugzilla.wikimedia.org/show_bug.cgi?id=41404

--- Comment #2 from TMg <mr.h...@gmx.de> 2012-10-26 00:15:28 UTC ---
The MonoBook skin starts with body { font-size: x-small; } and scales the text
up in the following containers. But the PostEdit code is inserted outside of
this containers right after the opening <body> tag and adds font-size: 0.8em;
on top of this. This is why it ends with 8px (calculated font size) in the
MonoBook skin but 13px in the Vector skin.

Possible solution:

.postedit { font-size: 13px; }

Preferred. This guarantees it will look the same in all skins. All web browsers
are able to scale px font sizes.

An other possible solution:

.skin-monobook .postedit { font-size: 125%; }

This way you need to add code for every skin.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
You are on the CC list for the bug.

_______________________________________________
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to