From f94272c5399b9ecf6034544a62fd196f4f3f6cfe Mon Sep 17 00:00:00 2001 From: Richard van der Hoff Date: Sat, 30 Jan 2016 00:43:47 +0000 Subject: [PATCH] Add some crude CSS for highlighting the selected event (To be useful, this needs functionality which hasn't yet landed in react-sdk). --- .../css/matrix-react-sdk/views/rooms/EventTile.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/skins/vector/css/matrix-react-sdk/views/rooms/EventTile.css b/src/skins/vector/css/matrix-react-sdk/views/rooms/EventTile.css index 2d0205f58c..258364fa76 100644 --- a/src/skins/vector/css/matrix-react-sdk/views/rooms/EventTile.css +++ b/src/skins/vector/css/matrix-react-sdk/views/rooms/EventTile.css @@ -89,6 +89,15 @@ limitations under the License. /* end of overrides */ +/* this is used for the tile for the event which is selected via the URL. + * for now, it is just a crude color; ultimately we probably want some + * transition on here. + */ +.mx_EventTile_selected { + background-color: #76cfa6; + color: #fff; +} + .mx_EventTile_searchHighlight { background-color: #76cfa6; color: #fff;