From ffa43ebb96039920805dff52e721775af343e14e Mon Sep 17 00:00:00 2001 From: wmwragg Date: Wed, 20 Jul 2016 17:12:41 +0100 Subject: [PATCH] badge content when hovered is now kerned via the CSS --- src/components/views/rooms/RoomTile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/views/rooms/RoomTile.js b/src/components/views/rooms/RoomTile.js index e510c2abed..aa83110632 100644 --- a/src/components/views/rooms/RoomTile.js +++ b/src/components/views/rooms/RoomTile.js @@ -98,7 +98,7 @@ module.exports = React.createClass({ var badgeClasses; if (this.state.badgeHover) { - badgeContent = "\u00B7 \u00B7 \u00B7"; + badgeContent = "\u00B7\u00B7\u00B7"; } else if (this.props.highlight || notificationCount > 0) { badgeContent = notificationCount ? notificationCount : '!'; } else { @@ -106,7 +106,7 @@ module.exports = React.createClass({ } if (this.props.highlight || notificationCount > 0) { - badgeClasses = "mx_RoomTile_badge" + badgeClasses = "mx_RoomTile_badge"; } else { badgeClasses = "mx_RoomTile_badge mx_RoomTile_badge_no_unread"; }