Adjust edited tooltip to use shared styles

pull/21833/head
J. Ryan Stinnett 2019-05-17 12:19:02 +01:00
parent 059988ff5c
commit 603e6b7055
3 changed files with 11 additions and 3 deletions

View File

@ -490,6 +490,11 @@ limitations under the License.
}
*/
.mx_EventTile_editedTooltip {
font-size: 10px;
padding: 5px 6px;
}
/* end of overrides */
.mx_MatrixChat_useCompactLayout {

View File

@ -448,14 +448,17 @@ module.exports = React.createClass({
const Tooltip = sdk.getComponent('elements.Tooltip');
const editEvent = this.props.mxEvent.replacingEvent();
const date = editEvent && formatDate(editEvent.getDate());
editedTooltip = <Tooltip label={_t("Edited at %(date)s.", {date})} />;
editedTooltip = <Tooltip
tooltipClassName="mx_EventTile_editedTooltip mx_Tooltip_timeline"
label={_t("Edited at %(date)s.", {date})}
/>;
}
return (
<div
key="editedMarker" className="mx_EventTile_edited"
onMouseEnter={this._onMouseEnterEditedMarker}
onMouseLeave={this._onMouseLeaveEditedMarker}
>{editedTooltip}<span>{`(${_t("Edited")})`}</span></div>
>{editedTooltip}<span>{`(${_t("edited")})`}</span></div>
);
},

View File

@ -918,7 +918,7 @@
"Add an Integration": "Add an Integration",
"You are about to be taken to a third-party site so you can authenticate your account for use with %(integrationsUrl)s. Do you wish to continue?": "You are about to be taken to a third-party site so you can authenticate your account for use with %(integrationsUrl)s. Do you wish to continue?",
"Edited at %(date)s.": "Edited at %(date)s.",
"Edited": "Edited",
"edited": "edited",
"Removed or unknown message type": "Removed or unknown message type",
"Message removed by %(userId)s": "Message removed by %(userId)s",
"Message removed": "Message removed",