Add color to releng results success column

Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Dan McGee 2011-08-19 13:08:26 -05:00
parent 6b15298483
commit 5e5182ba9b
2 changed files with 9 additions and 1 deletions

View File

@ -930,6 +930,14 @@ ul.admin-actions {
position: relative; top: -0.9em;
}
#releng-result .success-yes {
color: green;
}
#releng-result .success-no {
color: red;
}
/* highlight current website in the navbar */
#archnavbar.anb-home ul li#anb-home a,
#archnavbar.anb-packages ul li#anb-packages a,

View File

@ -26,7 +26,7 @@ <h2>Results for:
<td>{{ test.user_name }}</td>
<td>{{ test.created|date }}</td>
<td>{{ test.architecture }}</td>
<td>{{ test.success|yesno|capfirst }}</td>
<td><span class="success-{{ test.success|yesno }}">{{ test.success|yesno|capfirst }}</span></td>
</tr>
{% endfor %}
</tbody>