Skip to content

Commit

Permalink
add reply and quote icons to the reply/quote indicators so people kno…
Browse files Browse the repository at this point in the history
…w what is going on
  • Loading branch information
kaniini committed Dec 26, 2022
1 parent 7efe4bc commit df07456
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class QuoteIndicator extends ImmutablePureComponent {
inverted
/>
<Icon
className='quote-indicator__cancel inverted'
className='quote-indicator__cancel icon-button inverted'
id='quote-right' />
{account && (
<AccountContainer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import ImmutablePureComponent from 'react-immutable-pure-component';

// Components.
import AccountContainer from 'flavours/glitch/containers/account_container';
import Icon from 'flavours/glitch/components/icon';
import IconButton from 'flavours/glitch/components/icon_button';
import AttachmentList from 'flavours/glitch/components/attachment_list';

Expand Down Expand Up @@ -58,6 +59,9 @@ class ReplyIndicator extends ImmutablePureComponent {
title={intl.formatMessage(messages.cancel)}
inverted
/>
<Icon
className='quote-indicator__cancel icon-button inverted'
id='reply' />
{account && (
<AccountContainer
id={account}
Expand Down

0 comments on commit df07456

Please sign in to comment.