@@ -67,7 +67,7 @@ import DeploymentDetailSteps from './DeploymentDetailSteps'
67
67
import { DeploymentHistoryDetailedView , DeploymentHistoryConfigList } from './DeploymentHistoryDiff'
68
68
import { GitChanges , Scroller } from './History.components'
69
69
import Artifacts from './Artifacts'
70
- import { statusColor as colorMap , EMPTY_STATE_STATUS , PULSATING_STATUS_MAP } from '../../constants'
70
+ import { statusColor as colorMap , EMPTY_STATE_STATUS } from '../../constants'
71
71
import './cicdHistory.scss'
72
72
73
73
const Finished = React . memo (
@@ -367,31 +367,27 @@ const TriggerDetailsStatusIcon = React.memo(
367
367
( { status } : TriggerDetailsStatusIconType ) : JSX . Element => (
368
368
< div className = "flexbox-col" >
369
369
< div className = "flex" >
370
- < svg width = "10" height = "10" viewBox = "0 0 10 10" fill = "none" xmlns = "http://www.w3.org/2000/svg" >
371
- < circle cx = "5" cy = "5" r = "4.5" fill = "white" stroke = "#3B444C" />
370
+ < svg width = "20" height = "20" viewBox = "0 0 20 20" fill = "none" xmlns = "http://www.w3.org/2000/svg" >
371
+ < circle cx = "10" cy = "10" r = "5" stroke = "var(--N700)" />
372
+ < path d = "M10 15L10 20" stroke = "var(--N700)" />
372
373
</ svg >
373
374
</ div >
374
375
375
376
< div className = "flex flex-grow-1" >
376
377
< div className = "dc__border-left--n7 h-100" />
377
378
</ div >
378
379
379
- < svg
380
- width = "10"
381
- height = "10"
382
- viewBox = "0 0 10 10"
383
- fill = "none"
384
- className = { `br-6 ${ PULSATING_STATUS_MAP [ status ] ? 'dc__pulsate' : '' } ` }
385
- style = {
386
- ! PULSATING_STATUS_MAP [ status ]
387
- ? {
388
- boxShadow : `0 0 10px ${ colorMap [ status ] } ` ,
389
- }
390
- : { }
391
- }
392
- xmlns = "http://www.w3.org/2000/svg"
393
- >
394
- < circle cx = "5" cy = "5" r = "4.5" fill = { colorMap [ status ] } stroke = { colorMap [ status ] } strokeOpacity = "0.3" />
380
+ < svg width = "20" height = "20" viewBox = "0 0 20 20" fill = "none" xmlns = "http://www.w3.org/2000/svg" >
381
+ < circle
382
+ cx = "10"
383
+ cy = "10"
384
+ r = "5"
385
+ fill = { colorMap [ status ] }
386
+ stroke = { colorMap [ status ] }
387
+ strokeOpacity = "0.3"
388
+ strokeWidth = "10"
389
+ />
390
+ < path d = "M10 0L10 5" stroke = "var(--N700)" />
395
391
</ svg >
396
392
</ div >
397
393
) ,
0 commit comments