mirror of https://github.com/vector-im/riot-web
33 lines
444 B
CSS
33 lines
444 B
CSS
.mx_RoomTile {
|
|
height: 20px;
|
|
margin-top: 1px;
|
|
margin-bottom: 1px;
|
|
padding: 5px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.mx_RoomTile.selected {
|
|
border: 2px inset #eee;
|
|
}
|
|
|
|
.mx_RoomTile_name {
|
|
font-size: 80%;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.mx_RoomTile div {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.mx_RoomTile.unread {
|
|
background-color: #66e;
|
|
}
|
|
|
|
.mx_RoomTile.invited {
|
|
background-color: #6e6;
|
|
}
|
|
|
|
.mx_RoomTile:hover {
|
|
}
|