mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Merge pull request #3453 from vector-im/luke/display-redactions-better
Better CSS for redactions
This commit is contained in:
commit
e3e2e3a56c
@ -121,7 +121,7 @@ module.exports = React.createClass({
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!eventStatus) { // sent
|
if (!eventStatus && !this.props.mxEvent.isRedacted()) { // sent and not redacted
|
||||||
redactButton = (
|
redactButton = (
|
||||||
<div className="mx_MessageContextMenu_field" onClick={this.onRedactClick}>
|
<div className="mx_MessageContextMenu_field" onClick={this.onRedactClick}>
|
||||||
Redact
|
Redact
|
||||||
|
@ -130,14 +130,13 @@ limitations under the License.
|
|||||||
color: $event-notsent-color;
|
color: $event-notsent-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_EventTile_redacted {
|
.mx_EventTile_redacted .mx_EventTile_line .mx_UnknownBody {
|
||||||
padding-top: 0px;
|
display: block;
|
||||||
}
|
width: 100%;
|
||||||
|
max-width: 300px;
|
||||||
.mx_EventTile_redacted .mx_EventTile_line,
|
height: 24px;
|
||||||
.mx_EventTile_redacted:hover .mx_EventTile_line,
|
border-radius: 4px;
|
||||||
.mx_EventTile_redacted.menu .mx_EventTile_line {
|
background-color: black;
|
||||||
background-color: $primary-fg-color;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_EventTile_highlight,
|
.mx_EventTile_highlight,
|
||||||
|
Loading…
Reference in New Issue
Block a user