|
@@ -47,12 +47,14 @@
|
|
</tr>
|
|
</tr>
|
|
</thead>
|
|
</thead>
|
|
<tbody
|
|
<tbody
|
|
- class="overflow-y-auto rounded-md w-full max-h-[320px] block border dark:border-immich-dark-gray dark:text-immich-dark-bg"
|
|
|
|
|
|
+ class="overflow-y-auto rounded-md w-full max-h-[320px] block border dark:border-immich-dark-gray dark:text-immich-dark-fg"
|
|
>
|
|
>
|
|
{#each stats.usageByUser as user, i}
|
|
{#each stats.usageByUser as user, i}
|
|
<tr
|
|
<tr
|
|
class={`text-center flex place-items-center w-full h-[50px] ${
|
|
class={`text-center flex place-items-center w-full h-[50px] ${
|
|
- i % 2 == 0 ? 'bg-immich-gray dark:bg-[#e5e5e5]' : 'bg-immich-bg dark:bg-[#eeeeee]'
|
|
|
|
|
|
+ i % 2 == 0
|
|
|
|
+ ? 'bg-immich-gray dark:bg-immich-dark-gray/75'
|
|
|
|
+ : 'bg-immich-bg dark:bg-immich-dark-gray/50'
|
|
}`}
|
|
}`}
|
|
>
|
|
>
|
|
<td class="text-sm px-2 w-1/5 text-ellipsis">{getFullName(user.userId)}</td>
|
|
<td class="text-sm px-2 w-1/5 text-ellipsis">{getFullName(user.userId)}</td>
|