diff options
author | Lynx Kotoura <admin@sanin.link> | 2018-05-01 21:02:04 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2018-05-01 14:02:04 +0200 |
commit | 86efccce2a874d16aa783d989ff4824bcfac40b5 (patch) | |
tree | b8dd1c2e3b96ae1cffc31b6e9a0bca5cae33f45f /app | |
parent | 705f1d7bf15b7dc46256ab4a3bfff4075c79a8e7 (diff) |
Fix low-contrasted cancel button of reply indicator (#7300)
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/mastodon/features/compose/components/reply_indicator.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/mastodon/features/compose/components/reply_indicator.js b/app/javascript/mastodon/features/compose/components/reply_indicator.js index d8cda96f3..5b4b81eac 100644 --- a/app/javascript/mastodon/features/compose/components/reply_indicator.js +++ b/app/javascript/mastodon/features/compose/components/reply_indicator.js @@ -51,7 +51,7 @@ export default class ReplyIndicator extends ImmutablePureComponent { return ( <div className='reply-indicator'> <div className='reply-indicator__header'> - <div className='reply-indicator__cancel'><IconButton title={intl.formatMessage(messages.cancel)} icon='times' onClick={this.handleClick} /></div> + <div className='reply-indicator__cancel'><IconButton title={intl.formatMessage(messages.cancel)} icon='times' onClick={this.handleClick} inverted /></div> <a href={status.getIn(['account', 'url'])} onClick={this.handleAccountClick} className='reply-indicator__display-name'> <div className='reply-indicator__display-avatar'><Avatar account={status.get('account')} size={24} /></div> |