@fy-/fws-vue 2.2.66 → 2.2.67
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -314,7 +314,7 @@ onUnmounted(() => {
|
|
|
314
314
|
scope="col"
|
|
315
315
|
class="px-6 py-4 whitespace-nowrap font-semibold"
|
|
316
316
|
:class="{
|
|
317
|
-
'cursor-pointer hover:bg-fv-neutral-100 dark:hover:bg-fv-neutral-
|
|
317
|
+
'cursor-pointer hover:bg-fv-neutral-100 dark:hover:bg-fv-neutral-700 transition-colors duration-200': sortables[key],
|
|
318
318
|
}"
|
|
319
319
|
@click="
|
|
320
320
|
() => {
|
|
@@ -347,7 +347,7 @@ onUnmounted(() => {
|
|
|
347
347
|
<tr
|
|
348
348
|
v-for="(row, index) in data"
|
|
349
349
|
:key="index"
|
|
350
|
-
class="bg-white border-b dark:bg-fv-neutral-900 dark:border-fv-neutral-800 hover:bg-fv-neutral-50 dark:hover:bg-fv-neutral-
|
|
350
|
+
class="bg-white border-b dark:bg-fv-neutral-900 dark:border-fv-neutral-800 hover:bg-fv-neutral-50 dark:hover:bg-fv-neutral-900 transition-colors duration-200"
|
|
351
351
|
>
|
|
352
352
|
<td
|
|
353
353
|
v-for="(header, key) in headers"
|
|
@@ -435,7 +435,7 @@ th, td {
|
|
|
435
435
|
/* Zebra striping for better readability */
|
|
436
436
|
@media (prefers-reduced-motion: no-preference) {
|
|
437
437
|
tbody tr:nth-child(odd) {
|
|
438
|
-
@apply bg-fv-neutral-50 dark:bg-fv-neutral-
|
|
438
|
+
@apply bg-fv-neutral-50 dark:bg-fv-neutral-900;
|
|
439
439
|
}
|
|
440
440
|
|
|
441
441
|
tbody tr:nth-child(odd):hover {
|
|
@@ -469,7 +469,7 @@ a:focus-visible {
|
|
|
469
469
|
}
|
|
470
470
|
|
|
471
471
|
.dark tbody tr:nth-child(odd) {
|
|
472
|
-
@apply bg-fv-neutral-
|
|
472
|
+
@apply bg-fv-neutral-900;
|
|
473
473
|
}
|
|
474
474
|
|
|
475
475
|
.dark tbody tr:hover {
|