Skip to content

Commit 2d80415

Browse files
committed
selected message highlight animation
1 parent da2dfae commit 2d80415

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

src/Frontend/src/components/messages2/SagaDiagram/SagaUpdateNode.vue

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,7 @@ watch(
200200
201201
.cell-inner-side--active {
202202
border: solid 2px #000000;
203+
animation: blink-border 1.8s ease-in-out;
203204
}
204205
205206
.cell-inner-right {
@@ -343,4 +344,19 @@ watch(
343344
font-weight: 900;
344345
color: #00a3c4;
345346
}
347+
348+
@keyframes blink-border {
349+
0%,
350+
100% {
351+
border-color: #000000;
352+
}
353+
20%,
354+
60% {
355+
border-color: #cccccc;
356+
}
357+
40%,
358+
80% {
359+
border-color: #000000;
360+
}
361+
}
346362
</style>

0 commit comments

Comments
 (0)