Index: trunk/phase3/skins/monobook/main.css |
— | — | @@ -287,37 +287,6 @@ |
288 | 288 | margin: 0; |
289 | 289 | padding: 0; |
290 | 290 | } |
291 | | -.success { |
292 | | - color: green; |
293 | | - font-size: larger; |
294 | | -} |
295 | | -.error { |
296 | | - color: red; |
297 | | - font-size: larger; |
298 | | -} |
299 | | -.errorbox, .successbox { |
300 | | - font-size: larger; |
301 | | - border: 2px solid; |
302 | | - padding: .5em 1em; |
303 | | - float: left; |
304 | | - margin-bottom: 2em; |
305 | | - color: #000; |
306 | | -} |
307 | | -.errorbox { |
308 | | - border-color: red; |
309 | | - background-color: #fff2f2; |
310 | | -} |
311 | | -.successbox { |
312 | | - border-color: green; |
313 | | - background-color: #dfd; |
314 | | -} |
315 | | -.errorbox h2, .successbox h2 { |
316 | | - font-size: 1em; |
317 | | - font-weight: bold; |
318 | | - display: inline; |
319 | | - margin: 0 .5em 0 0; |
320 | | - border: none; |
321 | | -} |
322 | 291 | |
323 | 292 | .catlinks { |
324 | 293 | border: 1px solid #aaa; |
Index: trunk/phase3/skins/common/shared.css |
— | — | @@ -359,3 +359,35 @@ |
360 | 360 | font-weight: bold; |
361 | 361 | } |
362 | 362 | |
| 363 | +/* success and error messages */ |
| 364 | +.success { |
| 365 | + color: green; |
| 366 | + font-size: larger; |
| 367 | +} |
| 368 | +.error { |
| 369 | + color: red; |
| 370 | + font-size: larger; |
| 371 | +} |
| 372 | +.errorbox, .successbox { |
| 373 | + font-size: larger; |
| 374 | + border: 2px solid; |
| 375 | + padding: .5em 1em; |
| 376 | + float: left; |
| 377 | + margin-bottom: 2em; |
| 378 | + color: #000; |
| 379 | +} |
| 380 | +.errorbox { |
| 381 | + border-color: red; |
| 382 | + background-color: #fff2f2; |
| 383 | +} |
| 384 | +.successbox { |
| 385 | + border-color: green; |
| 386 | + background-color: #dfd; |
| 387 | +} |
| 388 | +.errorbox h2, .successbox h2 { |
| 389 | + font-size: 1em; |
| 390 | + font-weight: bold; |
| 391 | + display: inline; |
| 392 | + margin: 0 .5em 0 0; |
| 393 | + border: none; |
| 394 | +} |
Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -1471,7 +1471,7 @@ |
1472 | 1472 | * to ensure that client-side caches don't keep obsolete copies of global |
1473 | 1473 | * styles. |
1474 | 1474 | */ |
1475 | | -$wgStyleVersion = '208'; |
| 1475 | +$wgStyleVersion = '209'; |
1476 | 1476 | |
1477 | 1477 | |
1478 | 1478 | # Server-side caching: |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -319,6 +319,8 @@ |
320 | 320 | * (bug 18304) rebuildrecentchanges.php got size changes wrong |
321 | 321 | * (bug 18170) Fixed a PHP warning in Parser::preSaveTransform() in PHP 5.3 |
322 | 322 | * (bug 18289) Database connection error page now returns correct HTML |
| 323 | +* "successbox", "errorbox" and related CSS classes are now available in all |
| 324 | + skins |
323 | 325 | |
324 | 326 | == API changes in 1.15 == |
325 | 327 | * (bug 16858) Revamped list=deletedrevs to make listing deleted contributions |