Actions
Defect #5440
closedUI Inconsistency : Administration > Enumerations table row headers should be enclosed in <thead>
Start date:
2010-05-04
Due date:
% Done:
0%
Estimated time:
0.05 h
Resolution:
Fixed
Affected version:
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>
Files
Updated by Alain Alain091 over 14 years ago
- File views_thead.patch views_thead.patch added
Find attached a patch
Updated by Jean-Philippe Lang over 14 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.
Actions