fix(timetable): light mode directional arrow style

This commit is contained in:
2026-04-05 01:02:04 +02:00
parent 5c56c0d63f
commit cd22a23aef
@@ -6,7 +6,10 @@
{{ globalStore.currentTimetableData!.route.replace('|', ' - ') }} {{ globalStore.currentTimetableData!.route.replace('|', ' - ') }}
</h2> </h2>
<table class="table-fixed mt-2 w-full border-collapse overflow-hidden" v-if="computedTimetableRows.length > 0"> <table
class="table-fixed mt-2 w-full border-collapse overflow-hidden"
v-if="computedTimetableRows.length > 0"
>
<thead> <thead>
<tr> <tr>
<th width="40" class="border border-black dark:border-white"> <th width="40" class="border border-black dark:border-white">
@@ -157,7 +160,7 @@
<tbody> <tbody>
<tr class="align-top"> <tr class="align-top">
<td <td
class="font-bold border-l-4" class="font-bold border-l-4 border-l-black dark:border-l-white"
:class="{ :class="{
'border-t border-t-black dark:border-t-white': 'border-t border-t-black dark:border-t-white':
row.lastRowRef != null && row.lastRowRef != null &&
@@ -196,7 +199,7 @@
</tr> </tr>
<tr <tr
class="border-l-4" class="border-l-4 border-l-black dark:border-l-white"
:class="{ :class="{
'border-t border-t-black dark:border-t-white align-top': 'border-t border-t-black dark:border-t-white align-top':
row.arrivalTracks != row.departureTracks || row.arrivalTracks != row.departureTracks ||