Merge branch 'bagger'

This commit is contained in:
Joseph Schorr 2014-12-01 12:48:59 -05:00
commit 72d613614d
36 changed files with 1123 additions and 17 deletions

View file

@ -864,6 +864,10 @@ i.toggle-icon:hover {
background-color: red;
}
.phase-icon.internalerror {
background-color: #DFFF00;
}
.phase-icon.waiting, .phase-icon.unpacking, .phase-icon.starting, .phase-icon.initializing {
background-color: #ddd;
}
@ -876,6 +880,10 @@ i.toggle-icon:hover {
background-color: #f0ad4e;
}
.phase-icon.priming-cache {
background-color: #ddd;
}
.phase-icon.pushing {
background-color: #5cb85c;
}
@ -4872,3 +4880,11 @@ i.slack-icon {
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);
}