Defect #5440
UI Inconsistency : Administration > Enumerations table row headers should be enclosed in <thead>
| Status: | Closed | Start date: | 2010-05-04 | |
|---|---|---|---|---|
| Priority: | Normal | Due date: | ||
| Assignee: | - | % Done: | 0% |
|
| Category: | UI | |||
| Target version: | 1.0.0 (RC) | Estimated time: | 0.05 hour | |
| Affected version: | 0.9.4 | Resolution: | Fixed |
Description
This is inconsistent with the other tables in the administration section and causes some CSS issues when styling the Files table with roadmap headers.
Current:<table class="list">
<tr>
<th>Name</th>
<th style="width:15%;">Default value</th>
<th style="width:15%;">Active</th>
<th style="width:15%;"></th>
<th align="center" style="width:10%;"> </th>
</tr>
Fix:<table class="list">
<thead>
<tr>
<th>Name</th>
<th style="width:15%;">Default value</th>
<th style="width:15%;">Active</th>
<th style="width:15%;"></th>
<th align="center" style="width:10%;"> </th>
</tr>
</thead>
Associated revisions
Adds missing thead tags (#5440).
History
Updated by Jean-Philippe Lang almost 2 years ago
- Status changed from New to Closed
- Target version set to 1.0.0 (RC)
- Resolution set to Fixed
Patch committed in r3734. Thanks.