Index: trunk/extensions/CentralAuth/CentralAuth.php |
— | — | @@ -257,12 +257,15 @@ |
258 | 258 | 'remoteExtPath' => 'CentralAuth/modules', |
259 | 259 | ); |
260 | 260 | |
261 | | -// Styles and any code common to all Special:Code subviews: |
262 | 261 | $wgResourceModules['ext.centralauth'] = array( |
263 | 262 | 'scripts' => 'ext.centralauth.js', |
264 | 263 | 'styles' => 'ext.centralauth.css', |
265 | 264 | ) + $commonModuleInfo; |
266 | 265 | |
| 266 | +$wgResourceModules['ext.centralauth.noflash'] = array( |
| 267 | + 'styles' => 'ext.centralauth.noflash.css', |
| 268 | +) + $commonModuleInfo; |
| 269 | + |
267 | 270 | // If AntiSpoof is installed, we can do some AntiSpoof stuff for CA |
268 | 271 | // Though, doing it this way, AntiSpoof has to be loaded/included first |
269 | 272 | // I guess this is bug 30234 |
Index: trunk/extensions/CentralAuth/specials/SpecialCentralAuth.php |
— | — | @@ -26,6 +26,7 @@ |
27 | 27 | $this->mCanEdit = $this->mCanUnmerge || $this->mCanLock || $this->mCanOversight; |
28 | 28 | |
29 | 29 | $wgOut->addModules( 'ext.centralauth' ); |
| 30 | + $wgOut->addModuleStyles( 'ext.centralauth.noflash' ); |
30 | 31 | $this->addMergeMethodDescriptions(); |
31 | 32 | |
32 | 33 | $this->mUserName = |
Index: trunk/extensions/CentralAuth/modules/ext.centralauth.css |
— | — | @@ -1,10 +1,3 @@ |
2 | | -.merge-method-help { |
3 | | - color: #aaa; |
4 | | - cursor: pointer; |
5 | | - font-size: 7pt; |
6 | | - padding: 3px; |
7 | | -} |
8 | | - |
9 | 2 | .merge-method-help-div { |
10 | 3 | position: absolute; |
11 | 4 | z-index: 3; |
Index: trunk/extensions/CentralAuth/modules/ext.centralauth.noflash.css |
— | — | @@ -0,0 +1,6 @@ |
| 2 | +.merge-method-help { |
| 3 | + color: #aaa; |
| 4 | + cursor: pointer; |
| 5 | + font-size: 7pt; |
| 6 | + padding: 3px; |
| 7 | +} |
Property changes on: trunk/extensions/CentralAuth/modules/ext.centralauth.noflash.css |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 8 | + native |