This commit is contained in:
2024-06-07 18:31:20 +02:00
parent fb56378f18
commit c252213ed9
@@ -28,13 +28,7 @@
:data-terminated="timetableHistory.terminated" :data-terminated="timetableHistory.terminated"
:data-fulfilled="timetableHistory.fulfilled" :data-fulfilled="timetableHistory.fulfilled"
> >
{{ ⦿
timetableHistory.terminated
? timetableHistory.fulfilled
? '⦿'
: '⦻'
: '◯'
}}
</span> </span>
#{{ timetableHistory.id }} | #{{ timetableHistory.id }} |
<b class="text--primary">{{ timetableHistory.trainCategoryCode }}</b> <b class="text--primary">{{ timetableHistory.trainCategoryCode }}</b>
@@ -80,7 +74,7 @@
}) })
" "
> >
<img src="/public/images/icon-back.svg" alt="icon navigate to timetable" /> <img src="/images/icon-back.svg" alt="icon navigate to timetable" />
</button> </button>
</div> </div>
</div> </div>
@@ -241,7 +235,15 @@ export default defineComponent({
.timetable-status-indicator { .timetable-status-indicator {
&[data-fulfilled='true'] { &[data-fulfilled='true'] {
color: limegreen; color: lightgreen;
}
&[data-terminated='false'] {
color: lightblue;
}
&[data-terminated='true'][data-fulfilled='false'] {
color: lightcoral;
} }
} }