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

View File

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