Merge pull request #387 from jenkinsci/bug/JENKINS-36904-running-queued-anim

Bug/jenkins 36904 running queued anim
This commit is contained in:
Cliff Meyers 2016-07-30 09:40:42 -04:00 committed by GitHub
commit eea4b1697d
2 changed files with 7 additions and 3 deletions

View File

@ -13,8 +13,8 @@ const style2 = { paddingBottom: '10px' };
storiesOf('PipelineCard', module)
.add('all states', () => {
const states = 'SUCCESS,QUEUED,RUNNING,FAILURE,ABORTED,UNSTABLE,NOT_BUILT,UNKNOWN'.split(',');
const startTime = moment().subtract(30, 'seconds').toISOString();
const estimatedDuration = 60000;
const startTime = moment().subtract(60, 'seconds').toISOString();
const estimatedDuration = 1000 * 60 * 5; // 5 mins
return (
<div style={style}>

View File

@ -69,11 +69,15 @@
path.running {
stroke: white;
}
circle.inner {
stroke: white;
fill: white;
}
}
.progress-spinner.queued {
circle {
stroke: white;
stroke: #bcd8f1;
}
circle.inner {
stroke: white;