Index: trunk/phase3/skins/monobook/main.css |
— | — | @@ -62,7 +62,6 @@ |
63 | 63 | |
64 | 64 | table { |
65 | 65 | font-size: 100%; |
66 | | - color: black; |
67 | 66 | } |
68 | 67 | a { |
69 | 68 | text-decoration: none; |
Index: trunk/phase3/skins/common/shared.css |
— | — | @@ -299,6 +299,7 @@ |
300 | 300 | background: #f9f9f9; |
301 | 301 | border: 1px #aaa solid; |
302 | 302 | border-collapse: collapse; |
| 303 | + color: black; |
303 | 304 | } |
304 | 305 | .wikitable th, .wikitable td { |
305 | 306 | border: 1px #aaa solid; |
Index: trunk/phase3/skins/common/diff.css |
— | — | @@ -54,8 +54,10 @@ |
55 | 55 | } |
56 | 56 | table.diff td div { |
57 | 57 | /* Force-wrap very long lines such as URLs or page-widening char strings. |
58 | | - CSS 3 draft..., but Gecko doesn't support it yet: |
59 | | - https://bugzilla.mozilla.org/show_bug.cgi?id=99457 */ |
| 58 | + CSS 3 only (In Gecko 1.9.1 / Firefox 3.5): |
| 59 | + https://bugzilla.mozilla.org/show_bug.cgi?id=99457 |
| 60 | + https://developer.mozilla.org/web-tech/2008/08/20/word-wrap-break-word/ |
| 61 | + https://developer.mozilla.org/En/CSS/Word-wrap */ |
60 | 62 | word-wrap: break-word; |
61 | 63 | |
62 | 64 | /* As fallback, scrollbars will be added for very wide cells |
Index: trunk/phase3/skins/vector/screen.css |
— | — | @@ -825,7 +825,6 @@ |
826 | 826 | /* Tables */ |
827 | 827 | table { |
828 | 828 | font-size: 100%; |
829 | | - color: black; |
830 | 829 | } |
831 | 830 | /* Forms */ |
832 | 831 | fieldset { |
Index: trunk/phase3/resources/mediawiki/mediawiki.js |
— | — | @@ -1026,9 +1026,7 @@ |
1027 | 1027 | // Allow calling with an external script or single dependency as a string |
1028 | 1028 | if ( typeof modules === 'string' ) { |
1029 | 1029 | // Support adding arbitrary external scripts |
1030 | | - if ( modules.substr( 0, 7 ) == 'http://' |
1031 | | - || modules.substr( 0, 8 ) == 'https://' ) |
1032 | | - { |
| 1030 | + if ( modules.substr( 0, 7 ) == 'http://' || modules.substr( 0, 8 ) == 'https://' ) { |
1033 | 1031 | if ( type === 'text/css' ) { |
1034 | 1032 | $( 'head' ) |
1035 | 1033 | .append( $( '<link rel="stylesheet" type="text/css" />' ) |