Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #55 from dirk-thomas/stripped_and_hover
[JENKINS-32148] use alternate background for table rows, highlight row on hover
  • Loading branch information
olivergondza committed Sep 5, 2016
2 parents 8319d7e + 2c8060d commit 15568e0
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
Expand Up @@ -28,7 +28,7 @@ THE SOFTWARE.
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define"
xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form">
<table class="pane sortable bigtable" id="testresult">
<table class="pane sortable bigtable stripped" id="testresult">
<tr>
<td class="pane-header" style="width:10em">${%Build}</td>
<td class="pane-header" style="width:10em">${%Test Description}</td>
Expand Down
Expand Up @@ -26,7 +26,7 @@ THE SOFTWARE.
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form">
<j:if test="${it.totalCount!=0}">
<h2>${%All Tests}</h2>
<table class="pane sortable bigtable" id="testresult">
<table class="pane sortable bigtable stripped" id="testresult">
<tr>
<td class="pane-header">${%Test name}</td>
<td class="pane-header" style="width:6em">${%Duration}</td>
Expand Down
Expand Up @@ -25,7 +25,7 @@ THE SOFTWARE.
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define"
xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form">
<table class="pane sortable bigtable" id="testresult">
<table class="pane sortable bigtable stripped" id="testresult">
<tr>
<td class="pane-header">${%Build}</td>
<td class="pane-header">${%Description}</td>
Expand Down
Expand Up @@ -35,7 +35,7 @@ THE SOFTWARE.
<j:otherwise>
<test:bar/>
<h2>${%Drill Down}</h2>
<table class="pane sortable">
<table class="pane sortable stripped">
<tr>
<td class="pane-header">${%Test}</td>
<td class="pane-header" style="text-align:right">${%Fail}</td>
Expand Down
Expand Up @@ -27,7 +27,7 @@ THE SOFTWARE.
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout" xmlns:t="/lib/hudson/test" xmlns:f="/lib/form">
<j:if test="${it.failCount!=0}">
<h2>${%All Failed Tests}</h2>
<table class="pane sortable bigtable">
<table class="pane sortable bigtable stripped">
<tr>
<td class="pane-header">${%Test Name}</td>
<td class="pane-header" style="width:4em">${%Duration}</td>
Expand All @@ -49,7 +49,7 @@ THE SOFTWARE.

<j:if test="${it.totalCount!=0}">
<h2>${%All Tests}</h2>
<table class="pane sortable bigtable" id="testresult">
<table class="pane sortable bigtable stripped" id="testresult">
<tr>
<td class="pane-header">${it.childTitle}</td>
<td class="pane-header" style="width:5em">${%Duration}</td>
Expand Down
Expand Up @@ -25,7 +25,7 @@ THE SOFTWARE.
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define"
xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form">
<table class="pane sortable bigtable" id="testresult">
<table class="pane sortable bigtable stripped" id="testresult">
<tr>
<td class="pane-header">${%Build}</td>
<td class="pane-header">${%Description}</td>
Expand Down
Expand Up @@ -44,7 +44,7 @@ THE SOFTWARE.
<a href="../${report.child.project.shortUrl}testReport" class="model-link inside">${report.child.project.name}</a>
</h3>

<table class="pane sortable bigtable">
<table class="pane sortable bigtable stripped">
<tr>
<td class="pane-header">Test Name</td>
<td class="pane-header" style="width:4em">Duration</td>
Expand Down
Expand Up @@ -28,7 +28,7 @@ THE SOFTWARE.

<j:if test="${it.failCount!=0}">
<h2>${%All Failed Tests}</h2>
<table class="pane sortable">
<table class="pane sortable stripped">
<tr>
<td class="pane-header">${%Test Name}</td>
<td class="pane-header" style="width:4em">${%Duration}</td>
Expand Down Expand Up @@ -65,7 +65,7 @@ THE SOFTWARE.

<j:if test="${it.totalCount!=0}">
<h2>${%All Tests}</h2>
<table class="pane sortable bigtable" id="testresult">
<table class="pane sortable bigtable stripped" id="testresult">
<tr>
<td class="pane-header">${it.childTitle}</td>
<td class="pane-header" style="width:5em">${%Duration}</td>
Expand Down

0 comments on commit 15568e0

Please sign in to comment.