Skip to content

Commit

Permalink
Layout fixes (#201)
Browse files Browse the repository at this point in the history
  • Loading branch information
timja committed Jun 3, 2024
1 parent 084e85a commit a66e270
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
10 changes: 6 additions & 4 deletions src/main/resources/hudson/matrix/MatrixBuild/ajaxMatrix.jelly
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,15 @@ THE SOFTWARE.
<j:choose>
<j:when test="${b==null}">
<l:icon src="symbol-status-nobuilt" class="icon-md" tooltip="${%Not run}" alt="${%Not run}"/>
${%Not run}
</j:when>
<j:otherwise>
<a href="${p.nearestRunUrl}" class="model-link inside">
<l:icon src="symbol-status-${b.iconColor.iconName}" class="icon-md" tooltip="${h.xmlEscape(p.tooltip)} ${it.number!=b.number?(it.isBuilding()?'- pending' : '- skipped'):''}" alt="${p.tooltip}" style="vertical-align: middle; ${it.number!=b.number?'opacity:0.5':''}"/>
<a href="${p.nearestRunUrl}" class="model-link inside"
tooltip="${h.xmlEscape(p.tooltip)} ${it.number!=b.number?(it.isBuilding()?'- pending' : '- skipped'):''}"
data-tooltip-append-to-parent="true"
style="${it.number!=b.number?'opacity:0.5':''}">
<l:icon src="symbol-status-${b.iconColor.iconName}" class="icon-md" alt="${p.tooltip}"/>
<j:if test="${empty(o.x) and empty(o.y)}">
${p.combination.toString(o.z)}
<span class="jenkins-!-margin-left-1">${p.combination.toString(o.z)}</span>
</j:if>
</a>
</j:otherwise>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ THE SOFTWARE.
<j:choose>
<j:when test="${p==null}">
<l:icon src="symbol-status-nobuilt" class="icon-md" tooltip="${%Not configured}" alt="${%Not configured}"/>
${%Not configured}
</j:when>
<j:otherwise>
<a href="${p.shortUrl}" class="model-link inside" style="vertical-align: middle">
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/lib/hudson/matrix-project/matrix.jelly
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ THE SOFTWARE.
</j:forEach>
</j:when>
<j:otherwise>
<table class="jenkins-table" id="configuration-matrix">
<table id="configuration-matrix">
<!-- X-axis -->
<j:forEach var="x" items="${o.x}" varStatus="loop">
<tr class="matrix-row">
Expand Down

0 comments on commit a66e270

Please sign in to comment.