forked from lix-project/hydra
* Make build steps clickable as well.
This commit is contained in:
parent
d9507c304a
commit
24923ed09a
|
@ -170,7 +170,8 @@
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
[% FOREACH step IN build.buildsteps -%]
|
[% FOREACH step IN build.buildsteps -%]
|
||||||
<tr>
|
<tr class="[% IF step.logfile %]clickable[% END %]"
|
||||||
|
[% IF step.logfile %] onclick="window.location = '[% c.uri_for('/nixlog' build.id step.stepnr) %]'" [% END %]>
|
||||||
<td>[% step.stepnr %]</td>
|
<td>[% step.stepnr %]</td>
|
||||||
<td>
|
<td>
|
||||||
[% IF step.type == 0 %]
|
[% IF step.type == 0 %]
|
||||||
|
|
|
@ -38,7 +38,7 @@
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
[% FOREACH build IN builds -%]
|
[% FOREACH build IN builds -%]
|
||||||
<tr [% IF build.schedulingInfo.busy %]class="runningJob"[% END %]
|
<tr class="clickable [% IF build.schedulingInfo.busy %]runningJob[% END %]"
|
||||||
onclick="window.location = '[% c.uri_for('/build' build.id) %]'">
|
onclick="window.location = '[% c.uri_for('/build' build.id) %]'">
|
||||||
[% IF !hideResultInfo %]
|
[% IF !hideResultInfo %]
|
||||||
<td>
|
<td>
|
||||||
|
|
|
@ -29,8 +29,9 @@ table {
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
table.buildList tr:hover {
|
tr.clickable:hover {
|
||||||
background-color: #a0a0f0;
|
background-color: #a0a0f0;
|
||||||
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.layoutTable td, .layoutTable th {
|
.layoutTable td, .layoutTable th {
|
||||||
|
|
Loading…
Reference in a new issue