mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 11:47:23 +03:00
Improve redacted body look
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
parent
bc7a8f8406
commit
fca5125c5b
2 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ limitations under the License.
|
||||||
padding-bottom: 2px;
|
padding-bottom: 2px;
|
||||||
font-size: $font-14px;
|
font-size: $font-14px;
|
||||||
position: relative;
|
position: relative;
|
||||||
line-height: 16px;
|
line-height: $font-16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_ReplyTile > a {
|
.mx_ReplyTile > a {
|
||||||
|
|
|
@ -112,7 +112,7 @@ export default class ReplyTile extends React.PureComponent<IProps> {
|
||||||
const EventTileType = sdk.getComponent(tileHandler);
|
const EventTileType = sdk.getComponent(tileHandler);
|
||||||
|
|
||||||
const classes = classNames("mx_ReplyTile", {
|
const classes = classNames("mx_ReplyTile", {
|
||||||
mx_ReplyTile_info: isInfoMessage,
|
mx_ReplyTile_info: isInfoMessage && !this.props.mxEvent.isRedacted(),
|
||||||
});
|
});
|
||||||
|
|
||||||
let permalink = "#";
|
let permalink = "#";
|
||||||
|
|
Loading…
Reference in a new issue