Partial fix for high CPU on build status pages
This commit is contained in:
parent
d0763862b1
commit
300473e7ad
1 changed files with 8 additions and 0 deletions
|
@ -4876,3 +4876,11 @@ i.slack-icon {
|
||||||
width: 120px;
|
width: 120px;
|
||||||
padding-right: 10px;
|
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);
|
||||||
|
}
|
Reference in a new issue