Author: gjm
Date: Wed Jun 20 16:12:01 2012
New Revision: 1352197
URL: http://svn.apache.org/viewvc?rev=1352197&view=rev
Log:
theme: fixing chrome's misrendering of sort labels - fixes #103
Modified:
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_report_list.html
Modified:
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_report_list.html
URL:
http://svn.apache.org/viewvc/incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_report_list.html?rev=1352197&r1=1352196&r2=1352197&view=diff
==============================================================================
---
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_report_list.html
(original)
+++
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_report_list.html
Wed Jun 20 16:12:01 2012
@@ -74,16 +74,10 @@
title_asc = asc if sort ==
'title' else None">
Sort by:
<a href="${href.report(sort='report', asc='0' if report_asc else
'1')}">
- <span class="label">
- <i class="${('icon-chevron-down',
'icon-chevron-up')[report_asc] if report_asc is not None else None}"></i>
- Identifier
- </span>
+ <span class="label"><i class="${('icon-chevron-down',
'icon-chevron-up')[report_asc] if report_asc is not None else
None}"></i>Identifier</span>
</a>
<a href="${href.report(sort='title', asc='0' if title_asc else
'1')}">
- <span class="label">
- <i class="${('icon-chevron-down',
'icon-chevron-up')[title_asc] if title_asc is not None else None}"></i>
- Title
- </span>
+ <span class="label"><i class="${('icon-chevron-down',
'icon-chevron-up')[title_asc] if title_asc is not None else
None}"></i>Title</span>
</a>
</small>
</h2>