Highlight room tiles on bing

This commit is contained in:
David Baker 2015-06-29 16:48:13 +01:00
parent 57ba816919
commit 46646cbd87
3 changed files with 13 additions and 1 deletions

View file

@ -40,6 +40,10 @@ limitations under the License.
background-color: #66e;
}
.mx_RoomTile.highlight {
background-color: lime;
}
.mx_RoomTile.invited {
background-color: #6e6;
}

View file

@ -32,6 +32,7 @@ module.exports = React.createClass({
'mx_RoomTile': true,
'selected': this.props.selected,
'unread': this.props.unread,
'highlight': this.props.highlight,
'invited': this.props.room.currentState.members[myUserId].membership == 'invite'
});
return (