Skip to content

Commit

Permalink
Merge pull request #60 from jonesbusy/feature/pane-class
Browse files Browse the repository at this point in the history
Use same style as other Jenkins widgets
  • Loading branch information
jonesbusy authored Nov 7, 2023
2 parents 74e050c + 2d40933 commit d1a91e4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<l:pane width="2" title="${it.widgetName}" id="${it.widgetId}">
<j:forEach var="w" items="${it.builds}">
<tr>
<td><a tooltip="${w.name}" href="${w.url}">${w.shortName}</a></td>
<td>${w.date}</td>
<td class="pane"><a tooltip="${w.name}" href="${w.url}">${w.shortName}</a></td>
<td class="pane">${w.date}</td>
</tr>
</j:forEach>
</l:pane>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
<l:pane width="2" title="${it.widgetName}" id="${it.widgetId}">
<j:forEach var="w" items="${it.builds}">
<tr>
<td><a tooltip="${w.name}" href="${w.url}">${w.name}</a></td>
<td tooltip="${w.timeToGo}">${w.date}</td>
<td class="pane"><a tooltip="${w.name}" href="${w.url}">${w.name}</a></td>
<td class="pane" tooltip="${w.timeToGo}">${w.date}</td>
</tr>
</j:forEach>
</l:pane>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<l:pane width="2" title="${it.widgetName}" id="${it.widgetId}">
<j:forEach var="w" items="${it.builds}">
<tr>
<td><a tooltip="${w.name}" href="${w.url}">${w.shortName}</a></td>
<td tooltip="${w.timeToGo}">${w.date}</td>
<td class="pane"><a tooltip="${w.name}" href="${w.url}">${w.shortName}</a></td>
<td class="pane" tooltip="${w.timeToGo}">${w.date}</td>
</tr>
</j:forEach>
</l:pane>
Expand Down

0 comments on commit d1a91e4

Please sign in to comment.