Partial fix for hover selecting children to show/hide etc

This commit is contained in:
Scott Idem
2025-06-18 21:20:03 -04:00
parent 0d4885b778
commit 9617071361

View File

@@ -150,6 +150,7 @@ max-w-max -->
delay-1000 hover:delay-500 delay-1000 hover:delay-500
duration-200 hover:duration-200 duration-200 hover:duration-200
ease-in-out ease-in-out
group
" "
> >
@@ -351,7 +352,7 @@ max-w-max -->
type="button" type="button"
class:w-48={$ae_loc?.app_cfg?.show_element__menu} class:w-48={$ae_loc?.app_cfg?.show_element__menu}
class="btn btn-sm variant-outline-tertiary hover:variant-ghost-success px-6 py-1 *:hover:inline" class="btn btn-sm variant-outline-tertiary hover:variant-ghost-success px-6 py-1 invisible group-hover:visible groupx"
title="Show or hide the menu" title="Show or hide the menu"
onclick={async () => { onclick={async () => {
if (!$ae_loc?.app_cfg?.show_element__menu) { if (!$ae_loc?.app_cfg?.show_element__menu) {
@@ -386,7 +387,7 @@ max-w-max -->
</span> </span>
{:else} {:else}
<Menu class="inline-block" /> <Menu class="inline-block" />
<span class="hidden"> <span class="hidden groupx-hover:inline-block">
Menu Menu
</span> </span>
{/if} {/if}