jenkins-modern-themes icon indicating copy to clipboard operation
jenkins-modern-themes copied to clipboard

SVG icons for build status are not displayed in the Pipeline Overview

Open adrianbompa opened this issue 4 months ago • 0 comments

We recently introduced the Pipeline Graph View , as it seems it's the only plugin being able to display pipelines with multiple nested levels of parallelism ( we're applying multiple terraform repositories, and within each repository we're applying all terraform folders, so 2 levels of nested parallelism).

However the build status icons are not visible, as you can see below (left side is blue ocean view, right side is Pipeline Overview: image

The following snippet worked for me as a workaround, added it via Manage Jenkins > Appearance > Extra CSS

.PWGx-PipelineGraph-container .build-status-icon__wrapper svg {
      display: block;
 }

adrianbompa avatar Oct 15 '24 07:10 adrianbompa