style: fix missed Phase 1/2 items — FA→Lucide, a11y, variant-* cleanup
- +layout.svelte: replace fa-cog/fa-spinner spinners with LoaderCircle; variant-filled-primary → preset-filled-primary on reload button - events/+page.svelte: fa-calendar-alt → CalendarDays, fa-exclamation-triangle → TriangleAlert (+ text-red-500 → text-error-500), fa-spinner → LoaderCircle - sign_in_out.svelte: fa-times → X, fa-sign-in-alt → LogIn - journals/+layout.svelte: fa-arrow-right → ArrowRight - journal_entry_header.svelte: fix focus:ring-0 → focus:ring-2 focus:ring-primary-500 (WCAG 2.1 AA — removes keyboard focus indicator violation) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
import { goto } from '$app/navigation';
|
||||
|
||||
// *** Import other supporting libraries
|
||||
import { ArrowDownUp, House, RefreshCw, Satellite } from '@lucide/svelte';
|
||||
import { ArrowDownUp, ArrowRight, House, RefreshCw, Satellite } from '@lucide/svelte';
|
||||
|
||||
// *** Import Aether specific variables and functions
|
||||
import { ae_loc, ae_sess, ae_api, slct } from '$lib/stores/ae_stores';
|
||||
@@ -323,7 +323,7 @@
|
||||
}}
|
||||
title="Scroll to right"
|
||||
>
|
||||
<span class="fas fa-arrow-right"></span>
|
||||
<ArrowRight size="1em" class="inline" />
|
||||
<!-- Scroll to Right
|
||||
xLeft={xLeft} xScroll={xScroll} xWidth={xWidth} xScroll={xScroll} scrollLeft={scroll_container().scrollLeft}
|
||||
total={xLeft + xWidth} -->
|
||||
|
||||
@@ -105,7 +105,7 @@
|
||||
<input
|
||||
type="text"
|
||||
bind:value={tmp_entry_obj.name}
|
||||
class="input input-sm font-bold text-lg grow md:min-w-[300px] border-none bg-transparent focus:ring-0"
|
||||
class="input input-sm font-bold text-lg grow md:min-w-[300px] border-none bg-transparent focus:ring-2 focus:ring-primary-500"
|
||||
placeholder="Entry Title..."
|
||||
onchange={on_save}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user