mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
Fix status prepend design (#1874)
* Fix status prepend design * Adjust status prepend styling a bit
This commit is contained in:
parent
b3030187a4
commit
19765216a1
@ -749,16 +749,16 @@ class Status extends ImmutablePureComponent {
|
||||
data-featured={featured ? 'true' : null}
|
||||
aria-label={textForScreenReader(intl, status, rebloggedByText, !status.get('hidden'))}
|
||||
>
|
||||
{prepend && account && (
|
||||
<StatusPrepend
|
||||
type={prepend}
|
||||
account={account}
|
||||
parseClick={parseClick}
|
||||
notificationId={this.props.notificationId}
|
||||
/>
|
||||
)}
|
||||
<header className='status__info'>
|
||||
<span>
|
||||
{prepend && account ? (
|
||||
<StatusPrepend
|
||||
type={prepend}
|
||||
account={account}
|
||||
parseClick={parseClick}
|
||||
notificationId={this.props.notificationId}
|
||||
/>
|
||||
) : null}
|
||||
{!muted || !isCollapsed ? (
|
||||
<StatusHeader
|
||||
status={status}
|
||||
|
@ -555,12 +555,10 @@
|
||||
}
|
||||
|
||||
.status__prepend {
|
||||
margin-top: -10px;
|
||||
margin-bottom: 10px;
|
||||
margin-top: -2px;
|
||||
margin-bottom: 8px;
|
||||
margin-left: 58px;
|
||||
color: $dark-text-color;
|
||||
padding: 8px 0;
|
||||
padding-bottom: 2px;
|
||||
font-size: 14px;
|
||||
position: relative;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user