Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(366)

Side by Side Diff: build/android/pylib/results/presentation/template/table.html

Issue 2886323003: Remove importing CSS for results details page. (Closed)
Patch Set: black links Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <table id="{{tb_value.table_id}}" class="info" style="display:none;"> 1 <table id="{{tb_value.table_id}}" style="display:none;">
2 <thead class="heads"> 2 <thead class="heads">
3 <tr> 3 <tr>
4 {% for cell in tb_value.table_headers -%} 4 {% for cell in tb_value.table_headers -%}
5 <th class="{{cell.class}}" id="{{cell.data}}" data-asc-sorted=0> 5 <th class="{{cell.class}}" id="{{cell.data}}" data-asc-sorted=0>
6 {{cell.data}} 6 {{cell.data}}
7 <span class="up" style="display:none;"> &#8593</span> 7 <span class="up" style="display:none;"> &#8593</span>
8 <span class="down" style="display:none;"> &#8595</span> 8 <span class="down" style="display:none;"> &#8595</span>
9 </th> 9 </th>
10 {%- endfor %} 10 {%- endfor %}
11 </tr> 11 </tr>
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 {%- elif cell.cell_type == 'action' -%} 51 {%- elif cell.cell_type == 'action' -%}
52 <a onclick="{{cell.action}}">{{cell.data}}</a> 52 <a onclick="{{cell.action}}">{{cell.data}}</a>
53 {%- else -%} 53 {%- else -%}
54 <b>{{cell.data}}</b> 54 <b>{{cell.data}}</b>
55 {%- endif %} 55 {%- endif %}
56 </td> 56 </td>
57 {%- endfor %} 57 {%- endfor %}
58 </tr> 58 </tr>
59 </tfoot> 59 </tfoot>
60 </table> 60 </table>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698