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 | Estimated time: | 0.05 hour | |
Target version: | 1.0.0 (RC) | |||
Resolution: | Fixed | Affected version: | 0.9.4 |
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
#2
Updated by Jean-Philippe Lang over 12 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.