Skip to content

Commit 4a09f7c

Browse files
committed
use sequence diagram blue for node selection
1 parent 4b130a8 commit 4a09f7c

File tree

3 files changed

+10
-23
lines changed

3 files changed

+10
-23
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ watch(
161161
}
162162
163163
.cell-inner-side--active {
164-
border: solid 5px #00a3c4;
164+
border: solid 5px #0b6eef;
165165
animation: blink-border 1.8s ease-in-out;
166166
}
167167
@@ -179,15 +179,15 @@ watch(
179179
@keyframes blink-border {
180180
0%,
181181
100% {
182-
border-color: #00a3c4;
182+
border-color: #0b6eef;
183183
}
184184
20%,
185185
60% {
186186
border-color: #cccccc;
187187
}
188188
40%,
189189
80% {
190-
border-color: #00a3c4;
190+
border-color: #0b6eef;
191191
}
192192
}
193193
</style>

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ watch(
136136
}
137137
138138
.cell-inner-side--active {
139-
border: solid 5px #00a3c4;
139+
border: solid 5px #0b6eef;
140140
animation: blink-border 1.8s ease-in-out;
141141
}
142142
@@ -221,15 +221,15 @@ watch(
221221
@keyframes blink-border {
222222
0%,
223223
100% {
224-
border-color: #00a3c4;
224+
border-color: #0b6eef;
225225
}
226226
20%,
227227
60% {
228228
border-color: #cccccc;
229229
}
230230
40%,
231231
80% {
232-
border-color: #00a3c4;
232+
border-color: #0b6eef;
233233
}
234234
}
235235
</style>

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

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -181,10 +181,7 @@ const hasStateChanges = computed(() => {
181181
<div class="cell-inner cell-inner-center cell-inner--align-bottom">
182182
<template v-if="update.InitiatingMessage.IsSagaTimeoutMessage">
183183
<img class="saga-icon saga-icon--center-cell" :src="SagaTimeoutIcon" alt="" />
184-
<!-- Conditionally make the text a link based on HasRelatedTimeoutRequest -->
185-
<a v-if="update.InitiatingMessage.HasRelatedTimeoutRequest" href="#" @click.prevent="navigateToTimeoutRequest" class="saga-status-title saga-status-title--inline timeout-status timeout-status--link" aria-label="timeout invoked">
186-
Timeout Invoked
187-
</a>
184+
<a v-if="update.InitiatingMessage.HasRelatedTimeoutRequest" href="#" @click.prevent="navigateToTimeoutRequest" class="saga-status-title saga-status-title--inline timeout-status" aria-label="timeout invoked"> Timeout Invoked </a>
188185
<h2 v-else class="saga-status-title saga-status-title--inline timeout-status" aria-label="timeout invoked">Timeout Invoked</h2>
189186
<br />
190187
</template>
@@ -329,7 +326,7 @@ const hasStateChanges = computed(() => {
329326
}
330327
331328
.cell-inner-side--active {
332-
border: solid 5px #00a3c4;
329+
border: solid 5px #0b6eef;
333330
animation: blink-border 1.8s ease-in-out;
334331
}
335332
@@ -425,16 +422,6 @@ const hasStateChanges = computed(() => {
425422
display: inline-block;
426423
font-size: 1rem;
427424
font-weight: 900;
428-
color: inherit; /* Default to inheriting parent color */
429-
}
430-
431-
.timeout-status--link {
432-
color: #00a3c4; /* Blue color only for links */
433-
text-decoration: none;
434-
}
435-
436-
.timeout-status--link:hover {
437-
text-decoration: underline;
438425
}
439426
440427
/* Styles for DiffViewer integration */
@@ -482,15 +469,15 @@ const hasStateChanges = computed(() => {
482469
@keyframes blink-border {
483470
0%,
484471
100% {
485-
border-color: #00a3c4;
472+
border-color: #0b6eef;
486473
}
487474
20%,
488475
60% {
489476
border-color: #cccccc;
490477
}
491478
40%,
492479
80% {
493-
border-color: #00a3c4;
480+
border-color: #0b6eef;
494481
}
495482
}
496483
</style>

0 commit comments

Comments
 (0)