[JENKINS-36904] use solid white pulse for "running" indicator

This commit is contained in:
Cliff Meyers 2016-07-29 14:35:04 -04:00
parent b8f4cf9699
commit c8197db439
2 changed files with 6 additions and 2 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,6 +69,10 @@
path.running {
stroke: white;
}
circle.inner {
stroke: white;
fill: white;
}
}
.progress-spinner.queued {