Skip to content

Commit

Permalink
Merge pull request #1987 from fbonerandi/master
Browse files Browse the repository at this point in the history
[FIX JENKINS-31753] Fields are aligned at the bottom
  • Loading branch information
daniel-beck committed Jan 20, 2016
2 parents a3663ee + ad22f4d commit 11e2e4c
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 11e2e4c

Please sign in to comment.