Index: trunk/phase3/skins/vector/main-ltr.css |
— | — | @@ -725,7 +725,7 @@ |
726 | 726 | * It's important for this rule to first reference an actual font name, some browsers will render the monospace text |
727 | 727 | * too small otherwise, namely Firefox, Chrome and Safari |
728 | 728 | */ |
729 | | - font-family: "Courier New", monospace; |
| 729 | + font-family: monospace, "Courier New"; |
730 | 730 | } |
731 | 731 | code { |
732 | 732 | background-color: #f9f9f9; |
Index: trunk/phase3/skins/vector/main-rtl.css |
— | — | @@ -725,7 +725,7 @@ |
726 | 726 | * It's important for this rule to first reference an actual font name, some browsers will render the monospace text |
727 | 727 | * too small otherwise, namely Firefox, Chrome and Safari |
728 | 728 | */ |
729 | | - font-family: "Courier New", monospace; |
| 729 | + font-family: monospace, "Courier New"; |
730 | 730 | } |
731 | 731 | code { |
732 | 732 | background-color: #f9f9f9; |
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 = '296'; |
| 1551 | +$wgStyleVersion = '297'; |
1552 | 1552 | |
1553 | 1553 | /** |
1554 | 1554 | * This will cache static pages for non-logged-in users to reduce |