th: quotes: Show left bar in indicator
ci/woodpecker/push/woodpecker Pipeline was successful
Details
ci/woodpecker/push/woodpecker Pipeline was successful
Details
Makes the quote/reply distinction clearer
Cherry-picked-from: f7d787f798
main
parent
2174def1ab
commit
eae164392e
|
@ -23,7 +23,7 @@ export const ReplyIndicator = () => {
|
|||
const content = { __html: status.get('contentHtml') };
|
||||
|
||||
return (
|
||||
<div className='reply-indicator'>
|
||||
<div className={'reply-indicator' + (quoteId ? ' reply-indicator__quote' : '')}>
|
||||
{inReplyToId && (<div className='reply-indicator__line' />)}
|
||||
|
||||
<Permalink href={account.get('url')} to={`/@${account.get('acct')}`} className='detailed-status__display-avatar'>
|
||||
|
|
|
@ -1206,6 +1206,11 @@ body > [data-popper-placement] {
|
|||
}
|
||||
}
|
||||
|
||||
.reply-indicator__quote {
|
||||
padding-inline-start: 10px;
|
||||
border-inline-start: 3px solid $darker-text-color;
|
||||
}
|
||||
|
||||
.edit-indicator {
|
||||
border-radius: 4px 4px 0 0;
|
||||
background: lighten($ui-base-color, 4%);
|
||||
|
|
|
@ -24,7 +24,7 @@ export const ReplyIndicator = () => {
|
|||
const content = { __html: status.get('contentHtml') };
|
||||
|
||||
return (
|
||||
<div className='reply-indicator'>
|
||||
<div className={'reply-indicator' + (quoteId ? ' reply-indicator__quote' : '')}>
|
||||
{inReplyToId && (<div className='reply-indicator__line' />)}
|
||||
|
||||
<Link to={`/@${account.get('acct')}`} className='detailed-status__display-avatar'>
|
||||
|
|
|
@ -1145,6 +1145,11 @@ body > [data-popper-placement] {
|
|||
}
|
||||
}
|
||||
|
||||
.reply-indicator__quote {
|
||||
padding-inline-start: 10px;
|
||||
border-inline-start: 3px solid $darker-text-color;
|
||||
}
|
||||
|
||||
.edit-indicator {
|
||||
border-radius: 4px 4px 0 0;
|
||||
background: lighten($ui-base-color, 4%);
|
||||
|
|
Loading…
Reference in New Issue