|
29 | 29 | <l:breadcrumb title="${%Disk usage}" href="."/>
|
30 | 30 | <st:include page="sidepanel.jelly" />
|
31 | 31 | <l:main-panel>
|
32 |
| - <h1>${%Disk usage}</h1> |
| 32 | + <div class="jenkins-app-bar"> |
| 33 | + <div class="jenkins-app-bar__content"> |
| 34 | + <h1> |
| 35 | + ${%Disk usage} |
| 36 | + </h1> |
| 37 | + </div> |
| 38 | + </div> |
33 | 39 | <st:include page="message.jelly" />
|
34 | 40 | <l:tabBar>
|
35 | 41 | <l:tab name="${%Jobs}" active="true" href="."/>
|
36 | 42 | <l:tab name="${%Directories}" href="./directories"/>
|
37 | 43 | </l:tabBar>
|
38 |
| - <table class="sortable pane bigtable"> |
| 44 | + <table class="jenkins-table sortable"> |
39 | 45 | <thead>
|
40 | 46 | <tr>
|
41 |
| - <th class="pane-header" initialSortDir="down">${%Item name}</th> |
42 |
| - <th class="pane-header" style="text-align: right">${%Disk usage} (kB)</th> |
43 |
| - <th class="pane-header" style="text-align: right">${%Action}</th> |
| 47 | + <th initialSortDir="down">${%Item name}</th> |
| 48 | + <th style="text-align: right" >${%Disk usage} (kB)</th> |
| 49 | + <th class="jenkins-table__cell--tight" data-sort-disable="true">${%Action}</th> |
44 | 50 | </tr>
|
45 | 51 | </thead>
|
46 | 52 | <tbody>
|
47 | 53 | <j:forEach var="e" items="${it.jobsUsages}">
|
48 | 54 | <j:if test="${e.usage != 0}">
|
49 | 55 | <tr>
|
50 |
| - <td class="pane"> |
51 |
| - <a href="${rootURL}/${e.url}" class="model-link inside">${e.displayName}</a> |
| 56 | + <td> |
| 57 | + <a href="${rootURL}/${e.url}" class="jenkins-table__link model-link inside">${e.displayName}</a> |
52 | 58 | </td>
|
53 |
| - <td class="pane" style="text-align: right"> |
| 59 | + <td style="text-align: right"> |
54 | 60 | <j:choose>
|
55 | 61 | <j:when test="${e.usage > 0}">${e.usage}</j:when>
|
56 | 62 | <j:otherwise>N/A</j:otherwise>
|
57 | 63 | </j:choose>
|
58 | 64 | </td>
|
59 |
| - <td class="pane" style="text-align: right"> |
60 |
| - <s:link href="clean/?job=${e.fullName}" post="true">run cleanup</s:link> |
| 65 | + <td> |
| 66 | + <s:link href="clean/?job=${e.fullName}" post="true" clazz="jenkins-table__link">cleanup</s:link> |
61 | 67 | </td>
|
62 | 68 | </tr>
|
63 | 69 | </j:if>
|
64 | 70 | </j:forEach>
|
65 | 71 | </tbody>
|
66 | 72 | </table>
|
67 |
| - <div style="padding:10px; margin-top: 10px; border: solid 1px #000"> |
| 73 | + <div style="padding:10px; margin-top: 10px;"> |
68 | 74 | <h4>Background</h4>
|
69 | 75 | <p>
|
70 | 76 | Large amounts of disk are typically consumed by a job's build history as each entry in the build history will have an archived
|
|
0 commit comments