Package updates and minor clean up.

This commit is contained in:
Scott Idem
2025-04-18 10:44:06 -04:00
parent 3d2ff02f8c
commit 204f2ed988
4 changed files with 35 additions and 71 deletions

View File

@@ -737,64 +737,6 @@ async function handle_change_password() {
</Modal>
{/if}
<style lang="scss">
/* BEGIN: AE's Svelte Quick Access Type component */
#AE-Sign-In-Out {
// outline: red solid thin;
// position: absolute;
position: fixed;
// position: relative;
// position: static;
// position: sticky;
/* top: 1em; */
bottom: 1.5rem;
left: 0rem;
padding: .5rem;
/* lightyellow */
/* background-color: hsla(60,100%,90%,.30); */
/* background-color: rgba(var(--color-surface-500) / .5); */
border-top: solid thin hsla(0,0%,0%,.25);
border-right: solid thin hsla(0,0%,0%,.25);
border-bottom: solid thin hsla(0,0%,0%,.25);
border-top-right-radius: .5em;
border-bottom-right-radius: .5em;
opacity: .15;
// opacity: .85;
/* opacity: 1; */
font-size: .75rem;
z-index: 5;
/* NOTE: transition when no longer hovering */
transition-property: opacity, background-color;
transition-delay: 3.25s;
transition-duration: .75s;
transition-timing-function: ease-out;
}
#AE-Sign-In-Out:hover {
/* lightyellow */
/* background-color: hsla(60,100%,90%,.95); */
/* background-color: rgba(var(--color-surface-500) / 1); */
// Doing this to give it more space. Especially for password managers
// top: 65%;
border-top: solid thin hsla(0,0%,0%,.95);
border-right: solid thin hsla(0,0%,0%,.95);
border-bottom: solid thin hsla(0,0%,0%,.95);
opacity: 1;
/* NOTE: transition when hover starts */
transition-property: opacity, background-color;
transition-delay: .5s;
transition-duration: .25s;
transition-timing-function: ease-in;
}
</style>