詹金斯阶段视图进行中工作时间未显示

时间:2018-11-13 14:09:44

标签: jenkins

我使用的是詹金斯(Jenkins)舞台视图,当作业正在进行时,没有显示台阶上的时间,在使用chrome中的CSS播放后,我设法移除了覆盖的蓝色条,并且时间就在那里了。

之前: enter image description here

之后: enter image description here

我可以花时间在蓝色条上显示吗?

1 个答案:

答案 0 :(得分:0)

看到这个3岁的缺陷JENKINS-46209

您可以使用以下脚本使其起作用。种类。

const styleElement = document.createElement('style');
styleElement.innerHTML = '.progress {background:transparent !important;} .progress-bar {opacity:0.8;}';
document.querySelector("head").appendChild(styleElement);

我没有想到这个脚本;我前一阵子遇到了它,并创建了一个脚本供自己使用。