mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-11-25 10:45:41 +03:00
Fix name text becomes too easily clickable
This commit is contained in:
parent
f9cb9502b1
commit
99d7525436
2 changed files with 9 additions and 8 deletions
|
@ -299,7 +299,7 @@
|
|||
overflow: hidden;
|
||||
/* text-overflow: ellipsis; */
|
||||
}
|
||||
.status > .container > .meta .name-text {
|
||||
.status > .container > .meta .meta-name {
|
||||
mask-image: linear-gradient(to left, transparent, black 16px);
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
|
|
@ -968,13 +968,14 @@ function Status({
|
|||
)}
|
||||
<div class="container">
|
||||
<div class="meta">
|
||||
{/* <span> */}
|
||||
<NameText
|
||||
account={status.account}
|
||||
instance={instance}
|
||||
showAvatar={size === 's'}
|
||||
showAcct={isSizeLarge}
|
||||
/>
|
||||
<span class="meta-name">
|
||||
<NameText
|
||||
account={status.account}
|
||||
instance={instance}
|
||||
showAvatar={size === 's'}
|
||||
showAcct={isSizeLarge}
|
||||
/>
|
||||
</span>
|
||||
{/* {inReplyToAccount && !withinContext && size !== 's' && (
|
||||
<>
|
||||
{' '}
|
||||
|
|
Loading…
Reference in a new issue