add reply and quote icons to the reply/quote indicators so people know what is going on

pull/36/head
Ariadne Conill 2022-12-26 04:38:21 +00:00
parent 7efe4bc5d3
commit df07456f51
2 changed files with 5 additions and 1 deletions

View File

@ -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

View File

@ -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';
@ -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}