add reply and quote icons to the reply/quote indicators so people know what is going on
parent
7efe4bc5d3
commit
df07456f51
|
@ -60,7 +60,7 @@ class QuoteIndicator extends ImmutablePureComponent {
|
||||||
inverted
|
inverted
|
||||||
/>
|
/>
|
||||||
<Icon
|
<Icon
|
||||||
className='quote-indicator__cancel inverted'
|
className='quote-indicator__cancel icon-button inverted'
|
||||||
id='quote-right' />
|
id='quote-right' />
|
||||||
{account && (
|
{account && (
|
||||||
<AccountContainer
|
<AccountContainer
|
||||||
|
|
|
@ -7,6 +7,7 @@ import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||||
|
|
||||||
// Components.
|
// Components.
|
||||||
import AccountContainer from 'flavours/glitch/containers/account_container';
|
import AccountContainer from 'flavours/glitch/containers/account_container';
|
||||||
|
import Icon from 'flavours/glitch/components/icon';
|
||||||
import IconButton from 'flavours/glitch/components/icon_button';
|
import IconButton from 'flavours/glitch/components/icon_button';
|
||||||
import AttachmentList from 'flavours/glitch/components/attachment_list';
|
import AttachmentList from 'flavours/glitch/components/attachment_list';
|
||||||
|
|
||||||
|
@ -58,6 +59,9 @@ class ReplyIndicator extends ImmutablePureComponent {
|
||||||
title={intl.formatMessage(messages.cancel)}
|
title={intl.formatMessage(messages.cancel)}
|
||||||
inverted
|
inverted
|
||||||
/>
|
/>
|
||||||
|
<Icon
|
||||||
|
className='quote-indicator__cancel icon-button inverted'
|
||||||
|
id='reply' />
|
||||||
{account && (
|
{account && (
|
||||||
<AccountContainer
|
<AccountContainer
|
||||||
id={account}
|
id={account}
|
||||||
|
|
Loading…
Reference in New Issue