Jorg3Lucas / jenkins-modern-themes

https://jorg3lucas.github.io/jenkins-modern-themes/
MIT License
23 stars 10 forks source link

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

Open adrianbompa opened 1 month ago

adrianbompa commented 1 month ago

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;
 }