mirror of
https://github.com/hcengineering/platform.git
synced 2024-11-22 11:42:30 +03:00
Fixed subissue title overflow (#2405)
Signed-off-by: Anton Brechka <anton.brechka@xored.com>
This commit is contained in:
parent
2b87c15c0f
commit
e83e0ee622
@ -28,7 +28,11 @@
|
||||
|
||||
{#if value}
|
||||
<span class="titlePresenter-container" class:with-margin={shouldUseMargin} title={value.title}>
|
||||
<span class="name overflow-label cursor-pointer" on:click={handleIssueEditorOpened}>{value.title}</span>
|
||||
<span
|
||||
class="name overflow-label cursor-pointer"
|
||||
style={`max-width: ${value.parents.length !== 0 ? 95 : 100}%`}
|
||||
on:click={handleIssueEditorOpened}>{value.title}</span
|
||||
>
|
||||
<ParentNamesPresenter {value} />
|
||||
</span>
|
||||
{/if}
|
||||
@ -41,6 +45,7 @@
|
||||
// flex-shrink: 10;
|
||||
|
||||
.name {
|
||||
flex-shrink: 0;
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user