@@ -315,36 +315,48 @@ class StatusActionBar extends ImmutablePureComponent {
315
315
}
316
316
317
317
const filterButton = this . props . onFilter && (
318
- < IconButton className = 'status__action-bar-button' title = { intl . formatMessage ( messages . hide ) } icon = 'eye' iconComponent = { VisibilityIcon } onClick = { this . handleHideClick } />
318
+ < div className = 'status__action-bar__button-wrapper' >
319
+ < IconButton className = 'status__action-bar-button' title = { intl . formatMessage ( messages . hide ) } icon = 'eye' iconComponent = { VisibilityIcon } onClick = { this . handleHideClick } />
320
+ </ div >
319
321
) ;
320
322
321
323
return (
322
324
< div className = 'status__action-bar' >
323
- < IconButton
324
- className = 'status__action-bar-button'
325
- title = { replyTitle }
326
- icon = { replyIcon }
327
- iconComponent = { replyIconComponent }
328
- onClick = { this . handleReplyClick }
329
- counter = { showReplyCount ? status . get ( 'replies_count' ) : undefined }
330
- obfuscateCount
331
- />
332
- < IconButton className = { classNames ( 'status__action-bar-button' , { reblogPrivate } ) } disabled = { ! publicStatus && ! reblogPrivate } active = { status . get ( 'reblogged' ) } title = { reblogTitle } icon = { reblogIcon } iconComponent = { reblogIconComponent } onClick = { this . handleReblogClick } counter = { withCounters ? status . get ( 'reblogs_count' ) : undefined } />
333
- < IconButton className = 'status__action-bar-button star-icon' animate active = { status . get ( 'favourited' ) } title = { intl . formatMessage ( messages . favourite ) } icon = 'star' iconComponent = { status . get ( 'favourited' ) ? StarIcon : StarBorderIcon } onClick = { this . handleFavouriteClick } counter = { withCounters ? status . get ( 'favourites_count' ) : undefined } />
334
- < IconButton className = 'status__action-bar-button bookmark-icon' disabled = { ! signedIn } active = { status . get ( 'bookmarked' ) } title = { intl . formatMessage ( messages . bookmark ) } icon = 'bookmark' iconComponent = { status . get ( 'bookmarked' ) ? BookmarkIcon : BookmarkBorderIcon } onClick = { this . handleBookmarkClick } />
325
+ < div className = 'status__action-bar__button-wrapper' >
326
+ < IconButton
327
+ className = 'status__action-bar-button'
328
+ title = { replyTitle }
329
+ icon = { replyIcon }
330
+ iconComponent = { replyIconComponent }
331
+ onClick = { this . handleReplyClick }
332
+ counter = { showReplyCount ? status . get ( 'replies_count' ) : undefined }
333
+ obfuscateCount
334
+ />
335
+ </ div >
336
+ < div className = 'status__action-bar__button-wrapper' >
337
+ < IconButton className = { classNames ( 'status__action-bar-button' , { reblogPrivate } ) } disabled = { ! publicStatus && ! reblogPrivate } active = { status . get ( 'reblogged' ) } title = { reblogTitle } icon = { reblogIcon } iconComponent = { reblogIconComponent } onClick = { this . handleReblogClick } counter = { withCounters ? status . get ( 'reblogs_count' ) : undefined } />
338
+ </ div >
339
+ < div className = 'status__action-bar__button-wrapper' >
340
+ < IconButton className = 'status__action-bar-button star-icon' animate active = { status . get ( 'favourited' ) } title = { intl . formatMessage ( messages . favourite ) } icon = 'star' iconComponent = { status . get ( 'favourited' ) ? StarIcon : StarBorderIcon } onClick = { this . handleFavouriteClick } counter = { withCounters ? status . get ( 'favourites_count' ) : undefined } />
341
+ </ div >
342
+ < div className = 'status__action-bar__button-wrapper' >
343
+ < IconButton className = 'status__action-bar-button bookmark-icon' disabled = { ! signedIn } active = { status . get ( 'bookmarked' ) } title = { intl . formatMessage ( messages . bookmark ) } icon = 'bookmark' iconComponent = { status . get ( 'bookmarked' ) ? BookmarkIcon : BookmarkBorderIcon } onClick = { this . handleBookmarkClick } />
344
+ </ div >
335
345
336
346
{ filterButton }
337
347
338
- < DropdownMenuContainer
339
- scrollKey = { scrollKey }
340
- status = { status }
341
- items = { menu }
342
- icon = 'ellipsis-h'
343
- size = { 18 }
344
- iconComponent = { MoreHorizIcon }
345
- direction = 'right'
346
- ariaLabel = { intl . formatMessage ( messages . more ) }
347
- />
348
+ < div className = 'status__action-bar__button-wrapper' >
349
+ < DropdownMenuContainer
350
+ scrollKey = { scrollKey }
351
+ status = { status }
352
+ items = { menu }
353
+ icon = 'ellipsis-h'
354
+ size = { 18 }
355
+ iconComponent = { MoreHorizIcon }
356
+ direction = 'right'
357
+ ariaLabel = { intl . formatMessage ( messages . more ) }
358
+ />
359
+ </ div >
348
360
349
361
< div className = 'status__action-bar-spacer' />
350
362
< a href = { status . get ( 'url' ) } className = 'status__relative-time' target = '_blank' rel = 'noopener' >
0 commit comments