TSK-1046 Gmail/telegram messages collaborators TSK-1097 Inbox scroll (#2928)

Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
This commit is contained in:
Denis Bykhov
2023-04-10 15:15:00 +06:00
committed by GitHub
parent d353c0e42d
commit 2c714e33fe
27 changed files with 369 additions and 63 deletions
@@ -83,7 +83,7 @@
<Label label={notification.string.Inbox} />
</span>
</div>
<div class="top-divider">
<div class="top-divider clear-mins h-full">
<Scroller>
{#if loading}
<Loading />
@@ -104,8 +104,8 @@
{#if (viewlet !== undefined && !((viewlet?.hideOnRemove ?? false) && ptx?.removed)) || model.length > 0}
<div class="msgactivity-container">
<div class="msgactivity-content" class:content={isColumn} class:comment={isComment}>
<div class="msgactivity-content__header">
<div class="msgactivity-content clear-mins" class:content={isColumn} class:comment={isComment}>
<div class="msgactivity-content__header clear-mins">
<div class="msgactivity-content__title labels-row">
{#if viewlet && viewlet?.editable}
{#if viewlet.label}
@@ -115,12 +115,12 @@
<span class="lower"><Label label={activity.string.Edited} /></span>
{/if}
{:else if viewlet && viewlet.label}
<span class="lower">
<span class="lower whitespace-nowrap">
<Label label={viewlet.label} params={viewlet.labelParams ?? {}} />
</span>
{#if viewlet.labelComponent}
<Component is={viewlet.labelComponent} {props} />
{/if}
{/if}
{#if viewlet && viewlet.labelComponent}
<Component is={viewlet.labelComponent} {props} />
{/if}
{#if viewlet === undefined && model.length > 0 && ptx?.updateTx}
@@ -248,6 +248,7 @@
}
.msgactivity-content__title {
display: inline-flex;
flex-wrap: nowrap;
align-items: baseline;
flex-grow: 1;
}