Skip to content

Commit

Permalink
[JENKINS-31753] Fields are aligned at the bottom
Browse files Browse the repository at this point in the history
(cherry picked from commit ad22f4d)
  • Loading branch information
fbonerandi authored and olivergondza committed Mar 2, 2016
1 parent 54c4b7f commit c69a88d
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions core/src/main/resources/hudson/model/ParametersAction/index.jelly
Expand Up @@ -35,12 +35,21 @@ THE SOFTWARE.
<st:include page="sidepanel.jelly" it="${build}" />
<l:main-panel>
<h1>${%Build} ${build.displayName}</h1>
<l:pane title="${%Parameters}" width="3">
<j:forEach var="parameterValue" items="${it.parameters}">
<st:include it="${parameterValue}"
page="value.jelly" />
</j:forEach>
</l:pane>
<div class="container-fluid pane-frame">
<div class="row">
<div class="col-xs-24 pane-header">${%Parameters}</div>
<div class="row col-xs-24 pane-content">
<table class="pane">
<j:forEach var="parameterValue" items="${it.parameters}">
<tbody>
<st:include it="${parameterValue}"
page="value.jelly" />
</tbody>
</j:forEach>
</table>
</div>
</div>
</div>
</l:main-panel>
</l:layout>
</j:jelly>

0 comments on commit c69a88d

Please sign in to comment.