diff options
author | Brion Vibber <brion@users.mediawiki.org> | 2004-05-29 09:21:24 +0000 |
---|---|---|
committer | Brion Vibber <brion@users.mediawiki.org> | 2004-05-29 09:21:24 +0000 |
commit | b15f49117cd7fc6542e41968b9fdc4e1acbbbc6f (patch) | |
tree | 205677b58202aba87ef84c003b6b3812600bf4e1 /stylesheets | |
parent | 28f7f0a1ed90250a6a8205159f4e68a26c96d9f2 (diff) | |
download | mediawikicore-b15f49117cd7fc6542e41968b9fdc4e1acbbbc6f.tar.gz mediawikicore-b15f49117cd7fc6542e41968b9fdc4e1acbbbc6f.zip |
Bitstream Vera often broken on Windows; remove it from headers as well as body text.
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/3739
Diffstat (limited to 'stylesheets')
-rw-r--r-- | stylesheets/monobook/IE50Fixes.css | 2 | ||||
-rw-r--r-- | stylesheets/monobook/IE55Fixes.css | 3 | ||||
-rw-r--r-- | stylesheets/monobook/IE60Fixes.css | 3 |
3 files changed, 7 insertions, 1 deletions
diff --git a/stylesheets/monobook/IE50Fixes.css b/stylesheets/monobook/IE50Fixes.css index 52f609e20047..7d7ae975587a 100644 --- a/stylesheets/monobook/IE50Fixes.css +++ b/stylesheets/monobook/IE50Fixes.css @@ -23,6 +23,8 @@ /* IE 5 & 5.5 interpret keyword sizes one off */ body { font: xx-small Verdana, Arial, sans-serif; } +/* and Bitstream Vera fonts are sometimes defective */ +h1, h2, h3, h4, h5, h6 { font-family: Verdana, Arial, sans-serif; } /* ** the edit tabs */ diff --git a/stylesheets/monobook/IE55Fixes.css b/stylesheets/monobook/IE55Fixes.css index 97d6eed26cb7..e9dbcc56974f 100644 --- a/stylesheets/monobook/IE55Fixes.css +++ b/stylesheets/monobook/IE55Fixes.css @@ -30,6 +30,9 @@ #p-personal { padding-bottom: 0.1em; } body { font: xx-small Verdana, Arial, sans-serif; } +/* Bitstream Vera fonts are sometimes defective */ +h1, h2, h3, h4, h5, h6 { font-family: Verdana, Arial, sans-serif; } + #p-cactions { width: 76% !important; z-index: 3 !important; diff --git a/stylesheets/monobook/IE60Fixes.css b/stylesheets/monobook/IE60Fixes.css index 3e9f41d437cf..1a5dd854ec52 100644 --- a/stylesheets/monobook/IE60Fixes.css +++ b/stylesheets/monobook/IE60Fixes.css @@ -1,6 +1,7 @@ /* 6.0 - only fixes */ /* content area */ -body { font-family: Verdana, Arial, sans-serif; } +/* Bitstream Vera fonts are sometimes defective */ +body, h1, h2, h3, h4, h5, h6 { font-family: Verdana, Arial, sans-serif; } /* workaround for various ie float bugs */ #column-content { float: none; |