fix: order button joint-item border

This commit is contained in:
Maxi Quoß
2025-01-30 17:09:18 +01:00
parent e4a12c5d3c
commit f410caaa54
7 changed files with 2306 additions and 1124 deletions

2579
frontend/pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,5 +1,4 @@
// This file was auto-generated by 'typesafe-i18n'. Any manual changes will be overwritten.
import { initI18nSvelte } from 'typesafe-i18n/svelte';
import type { Formatters, Locales, TranslationFunctions, Translations } from './i18n-types';

File diff suppressed because it is too large Load Diff

View File

@@ -1,5 +1,4 @@
// This file was auto-generated by 'typesafe-i18n'. Any manual changes will be overwritten.
import { initFormatters } from './formatters';
import type { Locales, Translations } from './i18n-types';

View File

@@ -1,5 +1,4 @@
// This file was auto-generated by 'typesafe-i18n'. Any manual changes will be overwritten.
import { initFormatters } from './formatters';
import type { Locales, Translations } from './i18n-types';

View File

@@ -1,5 +1,4 @@
// This file was auto-generated by 'typesafe-i18n'. Any manual changes will be overwritten.
import {
i18n as initI18n,

View File

@@ -130,18 +130,17 @@
value="ip"
/>
{/if}
<div class="tooltip join-item" data-tip={$LL.home.order_tooltip()}>
<button
class="btn {orderExpanded ? '' : 'rounded-field'}"
on:click={() => (orderExpanded = !orderExpanded)}
>
{#if orderExpanded}
<Fa icon={faChevronCircleRight} size="lg" />
{:else}
<Fa icon={faChevronCircleLeft} size="lg" />
{/if}
</button>
</div>
<button
class="btn join-item tooltip {orderExpanded ? '' : 'rounded-field'}"
data-tip={$LL.home.order_tooltip()}
on:click={() => (orderExpanded = !orderExpanded)}
>
{#if orderExpanded}
<Fa icon={faChevronCircleRight} size="lg" />
{:else}
<Fa icon={faChevronCircleLeft} size="lg" />
{/if}
</button>
</div>
</div>
{#if orderByGroups}