Fix KanbanCard (#275)

Signed-off-by: Alexander Platov <sas_lord@mail.ru>
This commit is contained in:
Alexander Platov 2021-10-13 23:52:36 +03:00 committed by GitHub
parent aa397a1ae7
commit 1edfb9fec4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 4 deletions

View File

@ -88,9 +88,6 @@
font-size: .75rem; font-size: .75rem;
color: var(--system-error-color); color: var(--system-error-color);
&:empty { visibility: hidden; } &:empty { visibility: hidden; }
&::-webkit-scrollbar:horizontal {
height: 2px;
}
} }
} }

View File

@ -215,6 +215,10 @@ table {
color: var(--theme-caption-color); color: var(--theme-caption-color);
} }
.fs-subtitle { font-size: .75rem; } .fs-subtitle { font-size: .75rem; }
.over-underline {
cursor: pointer;
&:hover { text-decoration: underline; }
}
.hidden-text { .hidden-text {
position: absolute; position: absolute;

View File

@ -42,7 +42,7 @@
<div class="flex-row-center"> <div class="flex-row-center">
<Avatar size={'medium'} /> <Avatar size={'medium'} />
<div class="flex-col ml-2"> <div class="flex-col ml-2">
<div class="fs-title"><Label label={formatName(object.$lookup?.candidate?.name)} /></div> <div class="fs-title over-underline" on:click={showCandidate}><Label label={formatName(object.$lookup?.candidate?.name)} /></div>
<div class="fs-subtitle"><Label label={formatName(object.$lookup?.candidate?.title)} /></div> <div class="fs-subtitle"><Label label={formatName(object.$lookup?.candidate?.title)} /></div>
</div> </div>
</div> </div>