Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -1547,7 +1547,7 @@ |
1548 | 1548 | * to ensure that client-side caches do not keep obsolete copies of global |
1549 | 1549 | * styles. |
1550 | 1550 | */ |
1551 | | -$wgStyleVersion = '295'; |
| 1551 | +$wgStyleVersion = '296'; |
1552 | 1552 | |
1553 | 1553 | /** |
1554 | 1554 | * This will cache static pages for non-logged-in users to reduce |
Index: trunk/phase3/skins/vector/main-ltr.css |
— | — | @@ -721,7 +721,11 @@ |
722 | 722 | font-style: italic; |
723 | 723 | }*/ |
724 | 724 | pre, code, tt { |
725 | | - font-family: monospace, sans-serif; |
| 725 | + /* |
| 726 | + * It's important for this rule to first reference an actual font name, some browsers will render the monospace text |
| 727 | + * too small otherwise, namely Firefox, Chrome and Safari |
| 728 | + */ |
| 729 | + font-family: "Courier New", monospace; |
726 | 730 | } |
727 | 731 | code { |
728 | 732 | background-color: #f9f9f9; |
Index: trunk/phase3/skins/vector/main-rtl.css |
— | — | @@ -721,7 +721,11 @@ |
722 | 722 | font-style: italic; |
723 | 723 | }*/ |
724 | 724 | pre, code, tt { |
725 | | - font-family: monospace, sans-serif; |
| 725 | + /* |
| 726 | + * It's important for this rule to first reference an actual font name, some browsers will render the monospace text |
| 727 | + * too small otherwise, namely Firefox, Chrome and Safari |
| 728 | + */ |
| 729 | + font-family: "Courier New", monospace; |
726 | 730 | } |
727 | 731 | code { |
728 | 732 | background-color: #f9f9f9; |