mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 20:28:06 +01:00
Use wrapper div as a spacer (#2046)
Keeps the alignment of timestamps, while also reducing clickable size Signed-off-by: Plastikmensch <plastikmensch@users.noreply.github.com> Signed-off-by: Plastikmensch <plastikmensch@users.noreply.github.com>
This commit is contained in:
parent
4b51d1386b
commit
08837f730d
2 changed files with 5 additions and 10 deletions
|
@ -328,12 +328,11 @@ class StatusActionBar extends ImmutablePureComponent {
|
|||
/>
|
||||
</div>
|
||||
|
||||
<div className='status__action-bar-timestamp'>
|
||||
<div className='status__action-bar-spacer' />
|
||||
<a href={status.get('url')} className='status__relative-time' target='_blank' rel='noopener'>
|
||||
<RelativeTimestamp timestamp={status.get('created_at')} />{status.get('edited_at') && <abbr title={intl.formatMessage(messages.edited, { date: intl.formatDate(status.get('edited_at'), { hour12: false, year: 'numeric', month: 'short', day: '2-digit', hour: '2-digit', minute: '2-digit' }) })}> *</abbr>}
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
@ -444,7 +444,6 @@
|
|||
|
||||
.status__relative-time {
|
||||
display: inline-block;
|
||||
flex-grow: 1;
|
||||
color: $dark-text-color;
|
||||
font-size: 14px;
|
||||
text-align: right;
|
||||
|
@ -590,11 +589,8 @@
|
|||
width: 23.15px;
|
||||
}
|
||||
|
||||
.status__action-bar-timestamp {
|
||||
.status__action-bar-spacer {
|
||||
flex-grow: 1;
|
||||
text-align: end;
|
||||
display: flex;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.detailed-status__action-bar-dropdown {
|
||||
|
|
Loading…
Reference in a new issue