Skip to content

Commit 1299c2d

Browse files
change complete color (#259)
Co-authored-by: Francesca-Bit <[email protected]>
1 parent b2f554f commit 1299c2d

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

packages/tdb-dashboard/src/Colors.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
/* mute: D2D3D9 */
33

44
:root {
5+
--color-green:rgb(0, 188, 140);
56
--color-pink: #de7dd8;
67
--text-contrast-pink: #002856;
78
--color-indigo: rgb(52, 80, 220);
@@ -70,6 +71,10 @@
7071
background : linear-gradient(122deg,var(--color-yellow) 0,var(--color-pink) 48%, var(--color-indigo) 100%);
7172
}
7273

74+
.text-green{
75+
color: var(--color-green) !important;
76+
}
77+
7378
.text-success,
7479
h3.text-success,
7580
h4.text-success,

packages/tdb-dashboard/src/pages/IndexingActionMonitor.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,10 @@ function ItemElement ({item}){
7575
}
7676
},[item.index])
7777

78-
const iconTypes = {'Assigned':<AiFillCheckCircle className="text-success" size="20px"/>,
78+
const iconTypes = {'Assigned':<AiFillCheckCircle className="text-green" size="20px"/>,
7979
'Progress':<ImSpinner5 className="text-warning loading-icon" size="20px"/>,
8080
'Error':<AiFillCloseCircle className="text-danger" size="20px"/>,
81-
'Complete':<AiFillClockCircle className="text-success" size="20px"/>}
81+
'Complete':<AiFillClockCircle className="text-warning loading-icon" size="20px"/>}
8282

8383
const name = item.name ? item.name['@value'] : ''
8484

0 commit comments

Comments
 (0)