Skip to content

Commit

Permalink
Merge pull request #238 from NotMyFault/feat/master/modern-tables
Browse files Browse the repository at this point in the history
Utilize modern table design
  • Loading branch information
car-roll authored Mar 2, 2022
2 parents f16124d + 3030c91 commit dcbd054
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
</pluginRepositories>
<properties>
<changelist>999999-SNAPSHOT</changelist>
<jenkins.version>2.320</jenkins.version>
<jenkins.version>2.321</jenkins.version>
<java.level>8</java.level>
<no-test-jar>false</no-test-jar>
<useBeta>true</useBeta>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,16 @@ THE SOFTWARE.
<l:layout title="${it.run.fullDisplayName} Running Steps">
<st:include page="sidepanel.jelly" it="${it.run}"/>
<l:main-panel>
<table class="pane bigtable">
<table class="jenkins-table">
<j:set var="columns" value="${it.columns}"/>
<tr>
<th>${%Step}</th>
<j:forEach var="column" items="${columns}">
<st:include from="${column}" page="columnHeader"/>
</j:forEach>
</tr>
<thead>
<tr>
<th>${%Step}</th>
<j:forEach var="column" items="${columns}">
<st:include from="${column}" page="columnHeader"/>
</j:forEach>
</tr>
</thead>
<j:forEach var="node" items="${it.nodes}">
<tr>
<td style="padding-left: ${row.treeDepth*20+5}px" tooltip="ID: ${node.id}">
Expand Down

0 comments on commit dcbd054

Please sign in to comment.