|
18 | 18 | <h1>${%title}</h1> |
19 | 19 |
|
20 | 20 | ${%intro} |
21 | | - <h4> |
| 21 | + <h4 style="margin-top: 1rem; margin-bottom: 0"> |
22 | 22 | ${%scriptdirectorytext} |
23 | 23 | </h4> |
24 | 24 | ${it.scriptDirectory} |
25 | 25 |
|
| 26 | + <br /><br /> |
| 27 | + |
26 | 28 | <div class="excerpt"> |
27 | 29 | <j:if test="${it.configuration.scripts.size() == 0}"> |
28 | 30 | <h3> |
|
38 | 40 | <td class="pane scriptler-toolbar" width="1%"> |
39 | 41 | <j:choose> |
40 | 42 | <j:when test="${approved == null}"> |
41 | | - <l:icon title="${%fileNotAvailable}" class="icon-error icon-sm" /> |
| 43 | + <l:icon tooltip="${%fileNotAvailable}" src="symbol-remove-circle plugin-ionicons-api" class="icon-sm jenkins-!-error-color" /> |
42 | 44 | </j:when> |
43 | 45 | <j:when test="${approved == true}"> |
44 | | - <l:icon title="${%scriptApproved}" class="icon-accept icon-sm" /> |
| 46 | + <l:icon tooltip="${%scriptApproved}" src="symbol-checkmark-circle plugin-ionicons-api" class="icon-sm jenkins-!-success-color" /> |
45 | 47 | </j:when> |
46 | 48 | <j:otherwise> |
47 | | - <l:icon title="${%scriptNotYetApproved}" class="icon-warning icon-sm"/> |
| 49 | + <l:icon tooltip="${%scriptNotYetApproved}" src="symbol-warning plugin-ionicons-api" class="icon-sm jenkins-!-warning-color"/> |
48 | 50 | </j:otherwise> |
49 | 51 | </j:choose> |
50 | 52 | <j:choose> |
51 | 53 | <j:when test="${t.nonAdministerUsing}"> |
52 | 54 | <a class="scriptler-icon-slot"> |
53 | | - <l:icon title="${%usableInBuildStep}" class="icon-setting icon-sm" /> |
| 55 | + <l:icon tooltip="${%usableInBuildStep}" src="symbol-construct-outline plugin-ionicons-api" class="icon-sm jenkins-!-text-color-secondary" /> |
54 | 56 | </a> |
55 | 57 | </j:when> |
56 | 58 | <j:otherwise> |
57 | 59 | <a class="scriptler-icon-slot"> |
58 | | - <l:icon title="${%notUsableInBuildStep}" class="icon-lock icon-sm" /> |
| 60 | + <l:icon tooltip="${%notUsableInBuildStep}" src="symbol-lock-closed-outline plugin-ionicons-api" class="icon-sm jenkins-!-text-color-secondary" /> |
59 | 61 | </a> |
60 | 62 | </j:otherwise> |
61 | 63 | </j:choose> |
62 | 64 | <l:hasPermission permission="${it.scriptlerRunScripts}"> |
63 | 65 | <a href="runScript?id=${t.id}" class="scriptler-icon-slot"> |
64 | | - <l:icon class="icon-terminal icon-sm" title="${%run script} ${t.name}" /> |
| 66 | + <l:icon tooltip="${%runScript} ${t.name}" src="symbol-terminal-outline plugin-ionicons-api" class="icon-sm jenkins-!-text-color-secondary" /> |
65 | 67 | </a> |
66 | 68 | </l:hasPermission> |
67 | 69 | <l:hasPermission permission="${it.scriptlerConfigure}"> |
68 | 70 | <a href="editScript?id=${t.id}" class="scriptler-link-button scriptler-icon-slot"> |
69 | | - <l:icon class="icon-notepad icon-sm" title="${%edit script} ${t.name}" /> |
| 71 | + <l:icon tooltip="${%editScript} ${t.name}" src="symbol-create-outline plugin-ionicons-api" class="icon-sm jenkins-!-text-color-secondary" /> |
70 | 72 | </a> |
71 | 73 | <form method="post" action="removeScript" class="scriptler-inline scriptler-icon-slot" data-name="${t.name}" onclick="return confirmDelete(this)"> |
72 | 74 | <input type="hidden" name="id" value="${t.id}" /> |
73 | 75 | <button type="submit" name="submit_param" value="submit_value" class="scriptler-link-button"> |
74 | | - <l:icon class="icon-edit-delete icon-sm" title="${%remove script} ${t.name}" /> |
| 76 | + <l:icon tooltip="${%removeScript} ${t.name}" src="symbol-trash-outline plugin-ionicons-api" class="icon-sm jenkins-!-text-color-secondary" /> |
75 | 77 | </button> |
76 | 78 | </form> |
77 | 79 | </l:hasPermission> |
|
0 commit comments