mirror of
https://github.com/hcengineering/platform.git
synced 2024-11-26 04:23:58 +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}
|
{#if value}
|
||||||
<span class="titlePresenter-container" class:with-margin={shouldUseMargin} title={value.title}>
|
<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} />
|
<ParentNamesPresenter {value} />
|
||||||
</span>
|
</span>
|
||||||
{/if}
|
{/if}
|
||||||
@ -41,6 +45,7 @@
|
|||||||
// flex-shrink: 10;
|
// flex-shrink: 10;
|
||||||
|
|
||||||
.name {
|
.name {
|
||||||
|
flex-shrink: 0;
|
||||||
&:hover {
|
&:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user