mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-14 12:25:17 +00:00
UBER-760, UBER-827: fix new tab opening. Fix underlined message (#3672)
Signed-off-by: Vyacheslav Tumanov <me@slavatumanov.me>
This commit is contained in:
parent
9dc5c2f52e
commit
28be42ee92
@ -60,7 +60,7 @@
|
|||||||
class:colorInherit
|
class:colorInherit
|
||||||
class:fs-bold={accent}
|
class:fs-bold={accent}
|
||||||
style:flex-shrink={shrink}
|
style:flex-shrink={shrink}
|
||||||
on:click={clickHandler}
|
on:click|stopPropagation={clickHandler}
|
||||||
>
|
>
|
||||||
<slot />
|
<slot />
|
||||||
</span>
|
</span>
|
||||||
@ -73,7 +73,7 @@
|
|||||||
class:colorInherit
|
class:colorInherit
|
||||||
class:fs-bold={accent}
|
class:fs-bold={accent}
|
||||||
style:flex-shrink={shrink}
|
style:flex-shrink={shrink}
|
||||||
on:click={clickHandler}
|
on:click|stopPropagation={clickHandler}
|
||||||
>
|
>
|
||||||
<slot />
|
<slot />
|
||||||
</a>
|
</a>
|
||||||
|
@ -64,6 +64,8 @@
|
|||||||
<em><svelte:self nodes={node.childNodes} /></em>
|
<em><svelte:self nodes={node.childNodes} /></em>
|
||||||
{:else if node.nodeName === 'STRONG' || node.nodeName === 'B'}
|
{:else if node.nodeName === 'STRONG' || node.nodeName === 'B'}
|
||||||
<strong><svelte:self nodes={node.childNodes} /></strong>
|
<strong><svelte:self nodes={node.childNodes} /></strong>
|
||||||
|
{:else if node.nodeName === 'U'}
|
||||||
|
<u><svelte:self nodes={node.childNodes} /></u>
|
||||||
{:else if node.nodeName === 'P'}
|
{:else if node.nodeName === 'P'}
|
||||||
{#if node.childNodes.length > 0}
|
{#if node.childNodes.length > 0}
|
||||||
<p class="p-inline contrast">
|
<p class="p-inline contrast">
|
||||||
|
Loading…
Reference in New Issue
Block a user