diff --git a/src/lib/app_components/e_app_access_type.svelte b/src/lib/app_components/e_app_access_type.svelte
index dcbee253..a74fb969 100644
--- a/src/lib/app_components/e_app_access_type.svelte
+++ b/src/lib/app_components/e_app_access_type.svelte
@@ -5,15 +5,7 @@
// *** Import other supporting libraries
// import { liveQuery } from "dexie";
- import {
- ShieldEllipsis,
- ShieldMinus,
- ShieldPlus,
- ShieldUser,
- User,
- UserCheck
- } from '@lucide/svelte';
-
+ import { Lock, LockOpen, RefreshCw, ShieldEllipsis, ShieldMinus, ShieldPlus, ShieldUser, Unlink, User, UserCheck, UserRound, Wand2 } from '@lucide/svelte';
// *** Import Aether specific variables and functions
import { ae_util } from '$lib/ae_utils/ae_utils';
import { ae_loc, ae_sess, ae_api, slct, slct_trigger } from '$lib/stores/ae_stores';
@@ -240,6 +232,7 @@
}
entered_passcode = '';
+ show_passcode_input = false;
trigger = 'process_permission_check';
$ae_loc.app_cfg.show_element__menu = false;
@@ -359,7 +352,7 @@
class="btn btn-sm preset-tonal-success border border-success-500 hover:preset-filled-success-500 transition-all hover:transition-all *:hover:inline"
title="Syncing the local configuration with the remote configuration."
>
-
+
Sync
{:else}
@@ -379,7 +372,7 @@
class="btn btn-sm preset-tonal-warning border border-warning-500 hover:preset-filled-warning-500 transition-all hover:transition-all *:hover:inline"
title="Currently not syncing with the remote server. Re-sync the local configuration with the remote configuration?"
>
-
+
Re-sync?
{/if}
@@ -431,12 +424,12 @@
title={show_passcode_input ? 'Cancel passcode entry' : 'Enter a passcode to unlock access'}
>
{#if show_passcode_input}
-
+
Cancel
{:else}
-
+
Locked
-
+
Access?
{/if}
@@ -453,16 +446,16 @@
title={`Current access type/level: ${$ae_loc.access_type}`}
>
{#if $ae_loc.access_type == 'super'}
-
+
Super
{:else if $ae_loc.access_type == 'manager'}
-
+
Manager
{:else if $ae_loc.access_type == 'administrator'}
-
+
Administrator
{:else if $ae_loc.access_type == 'trusted'}
-
+
Trusted Access
{:else if $ae_loc.access_type == 'public'}
Public
@@ -598,14 +591,6 @@
} */
/* END: Svelte Access Type component */
- .access_type_unlock_btn:hover .lock_icon {
- display: none;
- }
-
- .access_type_unlock_btn:hover .unlock_icon {
- display: initial;
- }
-
.access_type_unlock_btn .unlock_text {
display: none;
}