Remove icon from index user

This commit is contained in:
Adria Navarro 2024-02-27 14:47:56 +01:00
parent 429be9b588
commit a48c861561
2 changed files with 14 additions and 24 deletions

View File

@ -27,7 +27,7 @@
<Icon name={icon} color={background ? "white" : color} />
{#if tooltip && showTooltip}
<div class="tooltip" in:fade={{ duration: 130, delay: 250 }}>
<Tooltip textWrapping direction="top" text={tooltip} />
<Tooltip textWrapping direction="right" text={tooltip} />
</div>
{/if}
</div>
@ -89,9 +89,9 @@
.tooltip {
position: absolute;
pointer-events: none;
left: 50%;
bottom: calc(100% + 4px);
transform: translateX(-50%);
left: calc(50% + 8px);
bottom: calc(-50% + 6px);
/* transform: translateY(-50%); */
text-align: center;
z-index: 1;
}

View File

@ -19,7 +19,6 @@
auth,
licensing,
organisation,
features,
admin,
} from "stores/portal"
import { onMount } from "svelte"
@ -346,20 +345,17 @@
{customRenderers}
loading={!$fetch.loaded || !groupsLoaded}
/>
<div class="footer">
{#if $features.isScimEnabled && enrichedUsers?.some(g => g.scimInfo?.isSync)}
<ScimInfo text="User synced externally" />
{/if}
<div class="pagination">
<Pagination
page={$fetch.pageNumber + 1}
hasPrevPage={$fetch.loading ? false : $fetch.hasPrevPage}
hasNextPage={$fetch.loading ? false : $fetch.hasNextPage}
goToPrevPage={fetch.prevPage}
goToNextPage={fetch.nextPage}
/>
</div>
<div class="pagination">
<Pagination
page={$fetch.pageNumber + 1}
hasPrevPage={$fetch.loading ? false : $fetch.hasPrevPage}
hasNextPage={$fetch.loading ? false : $fetch.hasNextPage}
goToPrevPage={fetch.prevPage}
goToNextPage={fetch.nextPage}
/>
</div>
<Table
schema={pendingSchema}
data={parsedInvites}
@ -409,12 +405,6 @@
justify-content: flex-end;
margin-left: auto;
}
.footer {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.controls {
display: flex;
flex-direction: row;