Trying to fix scrolling of the table.

This commit is contained in:
Scott Idem
2024-06-28 23:24:29 -04:00
parent acaff7634d
commit 9de9d31101
3 changed files with 12 additions and 6 deletions

View File

@@ -86,7 +86,7 @@ onMount(() => {
</h3> </h3>
{#if $lq__event_file_obj_li && $lq__event_file_obj_li.length} {#if $lq__event_file_obj_li && $lq__event_file_obj_li.length}
<div class="overflow-scroll w-full">
<table class="table-auto w-full"> <table class="table-auto w-full">
<thead> <thead>
<tr> <tr>
@@ -333,6 +333,7 @@ onMount(() => {
</tbody> </tbody>
</table> </table>
</div>
{:else} {:else}

View File

@@ -1625,7 +1625,7 @@ function send_sign_in_poc_email(
link_to_id={event_presentation_obj.event_presentation_id_random} link_to_id={event_presentation_obj.event_presentation_id_random}
allow_basic={$events_loc.auth__kv.session[$events_slct.event_session_id] || $events_loc.auth__kv.presenter[$events_slct.event_presenter_id]} allow_basic={$events_loc.auth__kv.session[$events_slct.event_session_id] || $events_loc.auth__kv.presenter[$events_slct.event_presenter_id]}
allow_moderator={$events_loc.auth__kv.session[$events_slct.event_session_id]} allow_moderator={$events_loc.auth__kv.session[$events_slct.event_session_id]}
container_class_li={'ae_modal_scrollfix'} container_class_li={''}
/> />
</li> </li>
@@ -1697,9 +1697,9 @@ function send_sign_in_poc_email(
<div class="ae_quick_modal_container"> <div class="ae_quick_modal_container">
<section class="ae_quick_popover"> <section class="ae_quick_popover">
<div class="flex flex-col items-center"> <div class="flex flex-col items-center ae_modal_scrollfix">
<section class="ae_modal_scrollfix"> <!-- <section class="ae_modal_scrollfix"> -->
<button <button
on:click={ on:click={
() => { () => {
@@ -1711,9 +1711,11 @@ function send_sign_in_poc_email(
<span class="fas fa-times mx-1"></span> <span class="fas fa-times mx-1"></span>
Close Close
</button> </button>
<!-- <div class="overflow-auto"> -->
<Presenter_view /> <Presenter_view />
</section> <!-- </div> -->
<!-- </section> -->
<button <button
on:click={ on:click={

View File

@@ -963,12 +963,15 @@ WARNING: The file upload and management is a work in progress. You can upload an
</form> </form>
<div class="overflow-x-auto w-full max-w-96 sm:max-w-fit">
<Element_manage_event_file_li <Element_manage_event_file_li
link_to_type={'event_presenter'} link_to_type={'event_presenter'}
link_to_id={$lq__event_presenter_obj.event_presenter_id_random} link_to_id={$lq__event_presenter_obj.event_presenter_id_random}
allow_basic={$events_loc.auth__kv.session[$events_slct.event_session_id] || $events_loc.auth__kv.presenter[$events_slct.event_presenter_id]} allow_basic={$events_loc.auth__kv.session[$events_slct.event_session_id] || $events_loc.auth__kv.presenter[$events_slct.event_presenter_id]}
allow_moderator={$events_loc.auth__kv.session[$events_slct.event_session_id]} allow_moderator={$events_loc.auth__kv.session[$events_slct.event_session_id]}
container_class_li={''}
/> />
</div>
</section> </section>