Skip to content
This repository was archived by the owner on Sep 9, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/main/webapp/pipe.js
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ function addPipelineHeader(html, component, data, c, resURL) {
} else {
html.push('&nbsp;<a id="startpipeline-' + c +'" class="task-icon-link" href="#" onclick="triggerBuild(\'' + component.firstJobUrl + '\', \'' + data.name + '\')">');
}
html.push('<img class="icon-clock icon-md" title="Build now" src="' + resURL + '/images/24x24/clock.png">');
html.push('<img class="icon-clock icon-md" title="Build now" src="' + resURL + '/images/24x24/clock.svg">');

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this should be '/images/svgs/clock.svg'

html.push('</a>');
}
html.push('</h1>');
Expand Down
Binary file removed src/main/webapp/themes/default/abort.png
Binary file not shown.
1 change: 1 addition & 0 deletions src/main/webapp/themes/default/abort.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions src/main/webapp/themes/default/pipeline-common.css
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ div.taskname {

div.task-manual {
display: table-cell;
background: url("play.png") no-repeat;
background: url("play.svg") no-repeat;
background-size: 75%;
cursor: pointer;
height: 14px;
Expand All @@ -164,7 +164,7 @@ div.task-manual {
div.task-rebuild {
display: table-cell;
background-color: #808080;
background: url("refresh.png") no-repeat;
background: url("refresh.svg") no-repeat;
background-size: 75%;
cursor: pointer;
height: 14px;
Expand All @@ -177,7 +177,7 @@ div.task-rebuild {
div.task-abort {
display: table-cell;
background-color: #808080;
background: url("abort.png") no-repeat;
background: url("abort.svg") no-repeat;
background-size: 100%;
position: absolute;
bottom: 6px;
Expand Down
Binary file removed src/main/webapp/themes/default/play.png
Binary file not shown.
1 change: 1 addition & 0 deletions src/main/webapp/themes/default/play.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/main/webapp/themes/default/refresh.png
Binary file not shown.
1 change: 1 addition & 0 deletions src/main/webapp/themes/default/refresh.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.