Index: trunk/extensions/Configure/CHANGELOG |
— | — | @@ -1,6 +1,9 @@ |
2 | 2 | This file lists changes on this extension. |
3 | 3 | Localisation updates are done on betawiki and aren't listed here. |
4 | 4 | |
| 5 | +0.10.2 - 20 November 2008 |
| 6 | + Added a border to all table cells. |
| 7 | + |
5 | 8 | 0.10.1 - 19 November 2008 |
6 | 9 | * Added links for APC and User Merge extensions. |
7 | 10 | * Settings descriptions are now also shown on differences. |
Index: trunk/extensions/Configure/Configure.ext.php |
— | — | @@ -143,7 +143,7 @@ |
144 | 144 | } |
145 | 145 | $use = wfMsgExt( 'configure-ext-use', array( 'parseinline' ) ); |
146 | 146 | $ret .= "<h2>{$use}</h2>\n"; |
147 | | - $ret .= "<table class=\"configure-table\"><tr><td>\n"; |
| 147 | + $ret .= "<table class=\"configure-table configure-table-ext\"><tr><td>\n"; |
148 | 148 | $checkName = $this->getCheckName(); |
149 | 149 | $ret .= Xml::checkLabel( wfMsg( 'configure-ext-use-extension' ), $checkName, $checkName, $this->isActivated() ); |
150 | 150 | $ret .= "</td></tr>\n"; |
Index: trunk/extensions/Configure/Configure.php |
— | — | @@ -17,7 +17,7 @@ |
18 | 18 | 'url' => 'http://www.mediawiki.org/wiki/Extension:Configure', |
19 | 19 | 'description' => 'Allow authorised users to configure the wiki via a web-based interface', |
20 | 20 | 'descriptionmsg' => 'configure-desc', |
21 | | - 'version' => '0.10.1', |
| 21 | + 'version' => '0.10.2', |
22 | 22 | ); |
23 | 23 | |
24 | 24 | # Configuration part |
— | — | @@ -113,7 +113,7 @@ |
114 | 114 | /** |
115 | 115 | * Styles versions, you shouldn't change it |
116 | 116 | */ |
117 | | -$wgConfigureStyleVersion = '7'; |
| 117 | +$wgConfigureStyleVersion = '8'; |
118 | 118 | |
119 | 119 | # Adding new rights... |
120 | 120 | $wgAvailableRights[] = 'configure'; |
Index: trunk/extensions/Configure/Configure.css |
— | — | @@ -60,7 +60,7 @@ |
61 | 61 | } |
62 | 62 | |
63 | 63 | td.configure-left-column { |
64 | | - width: 20%; |
| 64 | + width: 25%; |
65 | 65 | } |
66 | 66 | |
67 | 67 | /** |
— | — | @@ -75,6 +75,7 @@ |
76 | 76 | border: 1px solid #777; |
77 | 77 | } |
78 | 78 | |
| 79 | +table.configure-table > tr > td, |
79 | 80 | table.assoc > tr > td, |
80 | 81 | table.ns-array > tr > td, |
81 | 82 | table.ns-text > tr > td, |
— | — | @@ -85,6 +86,10 @@ |
86 | 87 | margin: 3px; |
87 | 88 | } |
88 | 89 | |
| 90 | +table.configure-table-ext > tr > td { |
| 91 | + border: none; |
| 92 | +} |
| 93 | + |
89 | 94 | /** |
90 | 95 | * links |
91 | 96 | */ |