diff --git a/src/lib/e_app_sys_menu.svelte b/src/lib/e_app_sys_menu.svelte index bb0fb035..8de68822 100644 --- a/src/lib/e_app_sys_menu.svelte +++ b/src/lib/e_app_sys_menu.svelte @@ -141,6 +141,7 @@ max-w-max --> relative *:hover:inline *:hover:visible + **:hover:visible opacity-50 hover:opacity-100 @@ -182,7 +183,7 @@ max-w-max --> $ae_loc.edit_mode = false; // dispatch_edit_mode_changed(); }} - class="btn btn-md px-2 preset-tonal-success border border-success-500 hover:preset-filled-success-500 transition-all + class="btn btn-md px-2 variant-ghost-success hover:variant-filled-success transition-all " title="Edit mode is currently enabled. Click to disable." @@ -202,7 +203,7 @@ max-w-max --> $ae_loc.edit_mode = true; // dispatch_edit_mode_changed(); }} - class="btn btn-md px-2 preset-tonal-warning border border-warning-500 hover:preset-filled-warning-500 transition-all space-x-0 *:hover:inline" + class="btn btn-md px-2 variant-ghost-warning hover:variant-filled-warning transition-all space-x-0 *:hover:inline" title="Edit mode is currently disabled. Click to enable." > @@ -212,140 +213,145 @@ max-w-max --> {/if} - -
- {#if $ae_loc.access_type && $ae_loc.access_type != 'anonymous'} - - - - - {#if $ae_loc.access_type == 'super'} - - - {:else if $ae_loc.access_type == 'manager'} - - - {:else if $ae_loc.access_type == 'administrator'} - - - {:else if $ae_loc.access_type == 'trusted'} - - - {:else if $ae_loc.access_type == 'public'} - Public - - {:else if $ae_loc.access_type == 'authenticated'} - Authenticated - - {:else if $ae_loc.access_type == 'anonymous'} - Anonymous Access - {:else} - Unknown Access - {/if} - - - {#if $ae_loc?.user_access_type && $ae_loc?.access_type == $ae_loc?.user_access_type} - + + {#if $ae_loc.access_type == 'super'} + + + {:else if $ae_loc.access_type == 'manager'} + + + {:else if $ae_loc.access_type == 'administrator'} + + + {:else if $ae_loc.access_type == 'trusted'} + + + {:else if $ae_loc.access_type == 'public'} + Public + + {:else if $ae_loc.access_type == 'authenticated'} + Authenticated + + {:else if $ae_loc.access_type == 'anonymous'} + Anonymous Access + {:else} + Unknown Access + {/if} + + + {#if $ae_loc?.user_access_type && $ae_loc?.access_type == $ae_loc?.user_access_type} + + {:else} + + {/if} {:else} {/if} - {:else} - - {/if} -
-
+ + + + + + +