Index: lnt/trunk/lnt/server/ui/static/lnt_run.css =================================================================== --- lnt/trunk/lnt/server/ui/static/lnt_run.css +++ lnt/trunk/lnt/server/ui/static/lnt_run.css @@ -17,4 +17,8 @@ .editable span { position: relative; -} \ No newline at end of file +} + +tr > td.right { + text-align: right; +} Index: lnt/trunk/lnt/server/ui/templates/reporting/runs.html =================================================================== --- lnt/trunk/lnt/server/ui/templates/reporting/runs.html +++ lnt/trunk/lnt/server/ui/templates/reporting/runs.html @@ -11,11 +11,12 @@ %} {% if bucket and bucket_name != 'Unchanged Tests' %} + {% set small_column_width = 'width: 7%;' %}
-
{{ bucket_name }} - {{ field_display_name }} | +{{ bucket_name }} - {{ field_display_name }} | {% if not show_perf %}Δ {{ metric_field_suffix }} | -{{ metric_name }} | -Current | -σ {{ metric_field_suffix }} | +Δ {{ metric_field_suffix }} | +{{ metric_name }} | +Current | +σ {{ metric_field_suffix }} | {% if secondary_info %} -Δ {{ secondary_field_suffix }} | -σ {{ secondary_field_suffix }} | +Δ {{ secondary_field_suffix }} | +σ {{ secondary_field_suffix }} | {% endif %} @@ -53,14 +54,14 @@ {% endif %} {{ utils.render_profile_link(cr.cur_profile, cr.prev_profile, run.id, compare_to_id, test_id) }} - {{ cr.pct_delta|aspctcell(style=styles['td'],reverse=cr.bigger_is_better)|safe }} -{{ "%.4f" | format(cr.previous) }} | -{{ "%.4f" | format(cr.current) }} | -{{ "%.4f" | format_or_default(cr.stddev, '-') }} | + {{ cr.pct_delta|aspctcell(style=styles['td'] + 'text-align: right;',reverse=cr.bigger_is_better)|safe }} +{{ "%.4f" | format(cr.previous) }} | +{{ "%.4f" | format(cr.current) }} | +{{ "%.4f" | format_or_default(cr.stddev, '-') }} | {% if secondary_info %} {% set a_cr = secondary_info[(name, field)] %} - {{ a_cr.pct_delta|aspctcell(style=styles['td'],reverse=cr.bigger_is_better)|safe }} -{{ "%.4f" | format_or_default(a_cr.stddev, '-') }} | + {{ a_cr.pct_delta|aspctcell(style=styles['td'] + 'text-align: right;',reverse=cr.bigger_is_better)|safe }} +{{ "%.4f" | format_or_default(a_cr.stddev, '-') }} | {% endif %} {% endfor %} Index: lnt/trunk/lnt/server/ui/templates/v4_run.html =================================================================== --- lnt/trunk/lnt/server/ui/templates/v4_run.html +++ lnt/trunk/lnt/server/ui/templates/v4_run.html @@ -58,9 +58,9 @@ {% endif %} {% if cell_color %} -{{ run_cell_value }} | +{{ run_cell_value }} | {% else %} -{{run_cell_value}} | +{{run_cell_value}} | {% endif %} {% if test_status == analysis.UNCHANGED_PASS and
---|