mediawiki-extensions-WikiEd.../modules/templates/dialogInsertTable.html
pcoombe a822d1c197 Add caption when inserting table
Data tables should always include a caption for accessibility reasons.
So add a placeholder caption when using the "insert table" button.

Bug: T252350
Change-Id: I6773e2274007946de516ae34e841f66ad20ebc0c
2020-05-11 11:09:23 +01:00

62 lines
3 KiB
HTML

<div class="wikieditor-toolbar-dialog-wrapper">
<fieldset><div class="wikieditor-toolbar-table-form">
<div class="wikieditor-toolbar-field-wrapper">
<input type="checkbox" id="wikieditor-toolbar-table-dimensions-header" checked/>
<label for="wikieditor-toolbar-table-dimensions-header"
rel="wikieditor-toolbar-tool-table-dimensions-header"></label>
</div>
<div class="wikieditor-toolbar-field-wrapper">
<input type="checkbox" id="wikieditor-toolbar-table-wikitable" checked/>
<label for="wikieditor-toolbar-table-wikitable" rel="wikieditor-toolbar-tool-table-wikitable"></label>
</div>
<div class="wikieditor-toolbar-field-wrapper">
<input type="checkbox" id="wikieditor-toolbar-table-sortable"/>
<label for="wikieditor-toolbar-table-sortable" rel="wikieditor-toolbar-tool-table-sortable"></label>
</div>
<div class="wikieditor-toolbar-table-dimension-fields">
<div class="wikieditor-toolbar-field-wrapper">
<label for="wikieditor-toolbar-table-dimensions-rows"
rel="wikieditor-toolbar-tool-table-dimensions-rows"></label><br/>
<input type="number" min="1" max="1000" id="wikieditor-toolbar-table-dimensions-rows" size="4"/>
</div>
<div class="wikieditor-toolbar-field-wrapper">
<label for="wikieditor-toolbar-table-dimensions-columns"
rel="wikieditor-toolbar-tool-table-dimensions-columns"></label><br/>
<input type="number" min="1" max="1000" id="wikieditor-toolbar-table-dimensions-columns" size="4"/>
</div>
</div>
</div></fieldset>
<div class="wikieditor-toolbar-table-preview-wrapper">
<span rel="wikieditor-toolbar-tool-table-example"></span>
<div class="wikieditor-toolbar-table-preview-content">
<table id="wikieditor-toolbar-table-preview" class="wikieditor-toolbar-table-preview wikitable">
<caption rel="wikieditor-toolbar-tool-table-example-caption"></caption>
<thead>
<tr class="wikieditor-toolbar-table-preview-header">
<th rel="wikieditor-toolbar-tool-table-example-header"></th>
<th rel="wikieditor-toolbar-tool-table-example-header"></th>
<th rel="wikieditor-toolbar-tool-table-example-header"></th>
</tr>
</thead><tbody>
<tr class="wikieditor-toolbar-table-preview-hidden" style="display: none;">
<td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>
<td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>
<td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>
</tr><tr>
<td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>
<td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>
<td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>
</tr><tr>
<td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>
<td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>
<td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>
</tr><tr>
<td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>
<td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>
<td rel="wikieditor-toolbar-tool-table-example-cell-text"></td>
</tr>
</tbody>
</table>
</div>
</div></div>