Commit 4c7fcc9 1 parent f6c7721 commit 4c7fcc9 Copy full SHA for 4c7fcc9
File tree 5 files changed +10
-9
lines changed
applications/operationalStudies/components/Scenario
applications/operationalStudies
5 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ export default function InfraLoadingState({ infra }: Props) {
29
29
title = { infra . state }
30
30
>
31
31
{ infra . state && infra . state === 'CACHED' ? (
32
- < span > • </ span >
32
+ < span className = "infra-loaded" / >
33
33
) : (
34
34
< >
35
35
< span className = "infra-loader" > •</ span >
Original file line number Diff line number Diff line change @@ -70,8 +70,7 @@ const ScenarioDescription = ({
70
70
71
71
< div className = "scenario-details-infra-name" >
72
72
{ t ( 'infrastructure' ) } :
73
- { infra && infra . state === 'CACHED' && < span className = "infra-loaded" /> }
74
- { infra && infra . state !== 'CACHED' && < InfraLoadingState infra = { infra } /> }
73
+ { infra && < InfraLoadingState infra = { infra } /> }
75
74
76
75
< span className = "scenario-infra-name" > { scenario . infra_name } </ span > | ID
77
76
{ scenario . infra_id }
Original file line number Diff line number Diff line change @@ -50,7 +50,10 @@ $colors: (
50
50
' grey60' : #5c5955 ,
51
51
' grey90' : #1f1b17 ,
52
52
' grey80' : #312e2b ,
53
+ ' info5' : #e6f7ff ,
54
+ ' info30' : #70c1e5 ,
53
55
' info60' : #216482 ,
56
+ ' info80' : #053348 ,
54
57
' primary50' : #256afa ,
55
58
' primary60' : #1844ef ,
56
59
' primary80' : #1f0f96 ,
Original file line number Diff line number Diff line change 226
226
padding : 0.5625rem 3.5rem 0.6875rem 1.5rem ;
227
227
display : flex ;
228
228
229
-
230
229
.error-description {
231
230
margin-left : 1rem ;
232
231
font-size : 0.875rem ;
Original file line number Diff line number Diff line change 1
1
.infra-loading-state {
2
- font-size : 0.9 rem ;
2
+ font-size : 0.75 rem ;
3
3
display : flex ;
4
4
align-items : center ;
5
5
margin-right : 0.5rem ;
8
8
color : var (--success30 );
9
9
}
10
10
& .loading {
11
- color : var (--orange );
11
+ color : var (--info60 );
12
12
}
13
13
14
14
.infra-loader :first-child {
27
27
28
28
@keyframes dot-flashing {
29
29
0% {
30
- color : var (--orange );
30
+ color : var (--info60 );
31
31
}
32
32
50%,
33
33
100% {
34
- color : #f8e3d8 ;
34
+ color : var ( --info30 ) ;
35
35
}
36
36
}
37
37
38
38
.steps {
39
39
font-weight : 500 ;
40
- margin-left : 0.5 rem ;
40
+ margin-left : 0.25 rem ;
41
41
margin-top : 0.1rem ;
42
42
}
43
43
}
You can’t perform that action at this time.
0 commit comments