File tree 2 files changed +24
-2
lines changed
src/components/recommender-view
2 files changed +24
-2
lines changed Original file line number Diff line number Diff line change 361
361
}
362
362
363
363
.progress-message {
364
+ position : relative;
365
+
364
366
& ::after {
367
+ display : inline;
368
+ position : absolute;
369
+ animation : dot-animation steps (1 , end) 2000ms infinite;
365
370
content : '' ;
366
- animation : dot 300ms linear infinite;
367
371
}
368
372
}
369
373
374
378
}
375
379
}
376
380
381
+ @keyframes dot-animation {
382
+ 0% {
383
+ content : '' ;
384
+ }
385
+ 25% {
386
+ content : '.' ;
387
+ }
388
+ 50% {
389
+ content : '..' ;
390
+ }
391
+ 75% {
392
+ content : '...' ;
393
+ }
394
+ 100% {
395
+ content : '' ;
396
+ }
397
+ }
398
+
377
399
button {
378
400
all : unset;
379
401
}
Original file line number Diff line number Diff line change @@ -1053,7 +1053,7 @@ export class RecRecRecommenderView extends LitElement {
1053
1053
<sl- progress- ring
1054
1054
value= ${ ( this . completedStep / this . totalStep ) * 100 }
1055
1055
> </ sl- progress- ring>
1056
- <span class= "progress-message" > Fetching recommender details ... </ span>
1056
+ <span class= "progress-message" > Fetching recommender details </ span>
1057
1057
<span class= "progress-remain-time"
1058
1058
> About ${ formatRemainTime ( this . remainTimeMS ) } left </ span
1059
1059
>
You can’t perform that action at this time.
0 commit comments