Index: trunk/extensions/CodeReview/CodeReview.php |
— | — | @@ -86,3 +86,4 @@ |
87 | 87 | $wgSubversionProxy = false; |
88 | 88 | $wgSubversionProxyTimeout = 30; // default 3 secs is too short :) |
89 | 89 | |
| 90 | +$wgCodeReviewStyleVersion = 1; |
Index: trunk/extensions/CodeReview/codereview.css |
— | — | @@ -32,19 +32,18 @@ |
33 | 33 | } |
34 | 34 | |
35 | 35 | .mw-codereview-status-fixme td { |
36 | | - background: #ff0000 !important;; |
37 | | - color: white; |
| 36 | + background: #ff9999 !important; |
38 | 37 | } |
39 | 38 | .mw-codereview-status-fixme:hover td { |
40 | | - background: #df0000 !important;; |
| 39 | + background: #df0000 !important; |
41 | 40 | color: white; |
42 | 41 | } |
43 | 42 | |
44 | 43 | .mw-codereview-status-resolved td { |
45 | | - background: #c0ffc0 !important;; |
| 44 | + background: #c0ffc0 !important; |
46 | 45 | } |
47 | 46 | .mw-codereview-status-resolved:hover td { |
48 | | - background: #a0dfa0 !important;; |
| 47 | + background: #a0dfa0 !important; |
49 | 48 | } |
50 | 49 | |
51 | 50 | /* Diffs */ |
Index: trunk/extensions/CodeReview/SpecialCode.php |
— | — | @@ -7,12 +7,12 @@ |
8 | 8 | } |
9 | 9 | |
10 | 10 | function execute( $subpage ) { |
11 | | - global $wgOut, $wgRequest, $wgUser, $wgScriptPath; |
| 11 | + global $wgOut, $wgRequest, $wgUser, $wgScriptPath, $wgCodeReviewStyleVersion; |
12 | 12 | |
13 | 13 | wfLoadExtensionMessages( 'CodeReview' ); |
14 | 14 | |
15 | 15 | $this->setHeaders(); |
16 | | - $wgOut->addStyle( "$wgScriptPath/extensions/CodeReview/codereview.css" ); |
| 16 | + $wgOut->addStyle( "$wgScriptPath/extensions/CodeReview/codereview.css?$wgCodeReviewStyleVersion" ); |
17 | 17 | |
18 | 18 | if( $subpage == '' ) { |
19 | 19 | $view = new CodeRepoListView(); |