Single-file modules to src/, the remaining as sub directories. A few highlights: * mediawiki.Upload.BookletLayout. (stylesheet: no image references) * mediawiki.feedback - Also move the image to its own images/ subdir. * mediawiki.searchSuggest. (stylesheet: no image references) * mediawiki.toc. (stylesheet: no image references) Also updated any other references to 'src/mediawiki/' that I could find in core: * Fixed references in docs/uidesign/*.html * Remove redundant exclude from jsduck.json. After this, there are 4 files remaining in src/mediawiki, which are the 4 files used by the actual 'mediawiki' base module. Bug: T193826 Change-Id: I8058652892a78b3f5976397bd850741dd5c92427
36 lines
1.1 KiB
HTML
36 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" dir="ltr">
|
|
<head>
|
|
<link rel="stylesheet" href="../../resources/src/mediawiki.legacy/shared.css">
|
|
<link rel="stylesheet" href="../../resources/src/mediawiki.feedlink/feedlink.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>
|