diff --git a/src/lib/elements/element_ae_crud_v2.svelte b/src/lib/elements/element_ae_crud_v2.svelte index 911a09e5..c3b3a4fa 100644 --- a/src/lib/elements/element_ae_crud_v2.svelte +++ b/src/lib/elements/element_ae_crud_v2.svelte @@ -368,8 +368,8 @@ > {:else if field_type == 'tiptap'}
-
@@ -470,92 +470,6 @@ transition-timing-function: linear; } - .ae_crud .field_editing_wrapper { - /* outline: dashed thin pink; */ - - /* position: relative; */ - - /* contain: layout; */ - /* contain: size; */ - /* contain: none; */ - contain: content; - - box-shadow: 0.5em 0.5em 0.75em 0.75em hsla(0, 0%, 0%, 0.5); - - /* color: hsla(0,0%,50%,.8); */ - /* background-color: hsla(0,0%,50%,.5); */ - /* border: dashed thin transparent; */ - - /* background-color: yellow; */ - background-color: hsla(60, 50%, 80%, 0.95); - border: solid thin hsla(0, 50%, 50%, 0.5); - border-radius: 0.5em; - - height: auto; - /* height: 100%; */ - max-height: 100%; - - min-width: fit-content; - width: auto; - max-width: 100%; - - /* font-size: 1em; */ - /* line-height: 1em; */ - - /* NOTE: transition when hover ends */ - transition-property: background-color, border-color, color, height, width; - transition-delay: 0.75s; /* short delay */ - transition-duration: 0.5s; - transition-timing-function: linear; - - z-index: 1; - - padding: 0.5em; - } - - .ae_crud.show_crud.display_inline .field_editing_wrapper:hover { - background-color: hsla(60, 60%, 90%, 0.8); - z-index: 55; - } - - .ae_crud.show_crud.display_inline .field_editing_wrapper { - /* display: block; */ - display: inline-block; - /* display: inline; */ - - box-shadow: initial; - background-color: hsla(60, 50%, 80%, 0.4); - - padding: 0.25em; - - position: initial; - - z-index: 0; - - display: flex; - flex-direction: row; - justify-content: center; - align-items: center; - gap: 0.5em; - - width: 30%; - } - - .ae_crud.show_crud.display_inline .field_editing_wrapper.display_block_edit { - /* display: block; */ - - display: flex; - flex-direction: column; - justify-content: center; - align-items: center; - gap: 0.5em; - - flex-grow: 1; - - height: auto; - width: 100%; - } - .ae_crud textarea { height: auto; } diff --git a/src/routes/core/ae_comp__person_obj_tbl.svelte b/src/routes/core/ae_comp__person_obj_tbl.svelte index ee0f8e07..7a58365d 100644 --- a/src/routes/core/ae_comp__person_obj_tbl.svelte +++ b/src/routes/core/ae_comp__person_obj_tbl.svelte @@ -74,7 +74,7 @@ - {#each $lq_kv__person_obj_li as person_obj (person_obj.person_id_random)} + {#each $lq_kv__person_obj_li as person_obj (person_obj?.person_id_random)} diff --git a/src/routes/core/users/[user_id]/+page.svelte b/src/routes/core/users/[user_id]/+page.svelte index 26d8bacf..43e925d1 100644 --- a/src/routes/core/users/[user_id]/+page.svelte +++ b/src/routes/core/users/[user_id]/+page.svelte @@ -1,5 +1,5 @@