CSS Refactor: Pull quote CSS out from parent classes

This is to prepare for it to be shown in the message composition area.
This commit is contained in:
Scott Nonnenberg 2018-04-18 11:24:49 -07:00
parent b4ff223d18
commit d29162f3b6
No known key found for this signature in database
GPG key ID: 5F82280C35134661
3 changed files with 236 additions and 250 deletions

View file

@ -171,7 +171,7 @@ export class Quote extends React.Component<Props, {}> {
: null;
const classes = classnames(
authorColor,
'quote',
'quoted-message',
isFromMe ? 'from-me' : null,
!onClick ? 'no-click' : null,
);