Lots of work on upgrading to Tailwind CSS 4. Still more to go. Need to fix Modals everywhere.
This commit is contained in:
@@ -689,8 +689,8 @@ $: {
|
||||
|
||||
<span
|
||||
class="*:hover:inline px-1 rounded-md"
|
||||
class:preset-tonal-warning border border-warning-500={!$events_loc.launcher.ws_connect}
|
||||
class:preset-tonal-success border border-success-500={$events_loc.launcher.ws_connect}
|
||||
class:preset-tonal-warning={!$events_loc.launcher.ws_connect}
|
||||
class:preset-tonal-success={$events_loc.launcher.ws_connect}
|
||||
>
|
||||
{#if $events_sess.launcher.ws_connect_status == 'connected'}
|
||||
<span class="fas fa-wifi mx-1"></span>
|
||||
@@ -708,8 +708,8 @@ $: {
|
||||
<span
|
||||
class:hidden={$events_loc.launcher.app_mode != 'native'}
|
||||
class="*:hover:inline px-1 rounded-md"
|
||||
class:preset-tonal-warning border border-warning-500={!$events_sess.launcher?.av_recording_status}
|
||||
class:preset-tonal-success border border-success-500={$events_sess.launcher?.av_recording_status}
|
||||
class:preset-tonal-warning={!$events_sess.launcher?.av_recording_status}
|
||||
class:preset-tonal-success={$events_sess.launcher?.av_recording_status}
|
||||
>
|
||||
{#if $events_sess.launcher?.av_recording_status}
|
||||
<span class="fas fa-video mx-1"></span>
|
||||
@@ -745,6 +745,7 @@ $: {
|
||||
class:hover:opacity-75={!$ae_loc.trusted_access}
|
||||
>
|
||||
<span class="fas fa-biohazard"></span>
|
||||
<span class="hidden">Launcher Config</span>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
@@ -824,8 +825,12 @@ $: {
|
||||
>
|
||||
Debug
|
||||
</h2>
|
||||
<button on:click={() => ($events_loc.launcher.hide_drawer__debug = true)} class="mb-4 dark:text-white">
|
||||
<button
|
||||
on:click={() => ($events_loc.launcher.hide_drawer__debug = true)}
|
||||
class="mb-4 dark:text-white"
|
||||
>
|
||||
<span class="fas fa-times"></span>
|
||||
<span class="hidden">Close Debug Drawer</span>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user