* Links on trs.

This commit is contained in:
Eelco Dolstra 2008-11-27 09:59:29 +00:00
parent 12dcf2d464
commit d9507c304a
2 changed files with 7 additions and 2 deletions

View file

@ -19,7 +19,7 @@
[% BLOCK renderBuildList %]
<table class="tablesorter">
<table class="buildList tablesorter">
<thead>
<tr>
[% IF !hideResultInfo %]
@ -38,7 +38,8 @@
</thead>
<tbody>
[% FOREACH build IN builds -%]
<tr [% IF build.schedulingInfo.busy %]class="runningJob"[% END %] >
<tr [% IF build.schedulingInfo.busy %]class="runningJob"[% END %]
onclick="window.location = '[% c.uri_for('/build' build.id) %]'">
[% IF !hideResultInfo %]
<td>
[% IF build.resultInfo.buildstatus == 0 %]

View file

@ -29,6 +29,10 @@ table {
margin-bottom: 1em;
}
table.buildList tr:hover {
background-color: #a0a0f0;
}
.layoutTable td, .layoutTable th {
border-style: none;
}