File tree Expand file tree Collapse file tree 1 file changed +48
-0
lines changed
src/Frontend/src/components/messages2/SagaDiagram Expand file tree Collapse file tree 1 file changed +48
-0
lines changed Original file line number Diff line number Diff line change @@ -200,6 +200,9 @@ watch(
200
200
201
201
.cell-inner-side--active {
202
202
border : solid 2px #000000 ;
203
+ -webkit-animation : blink-border 1.8s ease-in-out ;
204
+ -moz-animation : blink-border 1.8s ease-in-out ;
205
+ -o-animation : blink-border 1.8s ease-in-out ;
203
206
animation : blink-border 1.8s ease-in-out ;
204
207
}
205
208
@@ -345,6 +348,51 @@ watch(
345
348
color : #00a3c4 ;
346
349
}
347
350
351
+ @-webkit-keyframes blink-border {
352
+ 0% ,
353
+ 100% {
354
+ border-color : #000000 ;
355
+ }
356
+ 20% ,
357
+ 60% {
358
+ border-color : #cccccc ;
359
+ }
360
+ 40% ,
361
+ 80% {
362
+ border-color : #000000 ;
363
+ }
364
+ }
365
+
366
+ @-moz-keyframes blink-border {
367
+ 0% ,
368
+ 100% {
369
+ border-color : #000000 ;
370
+ }
371
+ 20% ,
372
+ 60% {
373
+ border-color : #cccccc ;
374
+ }
375
+ 40% ,
376
+ 80% {
377
+ border-color : #000000 ;
378
+ }
379
+ }
380
+
381
+ @-o-keyframes blink-border {
382
+ 0% ,
383
+ 100% {
384
+ border-color : #000000 ;
385
+ }
386
+ 20% ,
387
+ 60% {
388
+ border-color : #cccccc ;
389
+ }
390
+ 40% ,
391
+ 80% {
392
+ border-color : #000000 ;
393
+ }
394
+ }
395
+
348
396
@keyframes blink-border {
349
397
0% ,
350
398
100% {
You can’t perform that action at this time.
0 commit comments