wiki.techinc.nl/docs/uidesign/design.html
Bartosz Dziewoński b1dea1d957 Move mediawiki.legacy.* modules from skins/common/ to resources/
Also renamed some image files for consistency and sanity.

Added temporary symlinks to the new location for ajax.js and
wikibits.js, which still seem to get many hits for unknown reasons.
I'm going to figure this out and remove them before 1.24 release.

shared.css also appears in the access logs from bug 69277, but with
many fewer hits (it might just correspond to debug=true requests)
and failing to load a style file is a lot less problematic from
user's perspective than failing to load a script.

Bug: 69277
Change-Id: Id4a8f9470d287c73309ff526ffb88984e2d351b9
2014-08-31 00:30:49 +02:00

35 lines
1,007 B
HTML

<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<link rel="stylesheet" href="../../resources/src/mediawiki.legacy/shared.css">
</head>
<body style="font-size: small;">
<h2>Messages</h2>
<p class="success">Success message</p>
<p class="warning">Warning message</p>
<p class="error">Error message</p>
<h2>Messages box</h2>
<p class="visualClear successbox">Success message</p>
<p class="visualClear warningbox">Warning message</p>
<p class="visualClear errorbox">Error message</p>
<br class="visualClear"/>
<h2>Various</h2>
<span class="comment">span.comment</span>
<a class="feedlink">a.feedlink</a>
<table class="wikitable">
<tr><th colspan="2">table.wikitable</th></tr>
<tr><td>cell</td><td>cell</td></tr>
<tr><td>cell</td><td>cell</td></tr>
</table>
<table class="mw-datatable">
<tr><th colspan="2">table.mw-datatable</th></tr>
<tr><td>line with hover</td><td>line with hover</td></tr>
<tr><td>line with hover</td><td>line with hover</td></tr>
</table>
</body>
</html>