Partial fix for high CPU on build status pages

This commit is contained in:
Joseph Schorr 2014-11-20 17:30:57 -05:00
parent d0763862b1
commit 300473e7ad

View file

@ -4875,4 +4875,12 @@ i.slack-icon {
#startTriggerDialog #runForm .field-title {
width: 120px;
padding-right: 10px;
}
.progress.active .progress-bar {
/* Note: There is a bug in Chrome which results in high CPU usage for active progress-bars
due to their animation. This enables the GPU for the rendering, which cuts CPU usage in
half (although it is still not great)
*/
transform: translateZ(0);
}