mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
37 lines
573 B
CSS
37 lines
573 B
CSS
.mx_RoomTile {
|
|
height: 20px;
|
|
background-color: #ddd;
|
|
margin-top: 1px;
|
|
margin-bottom: 1px;
|
|
padding: 5px;
|
|
cursor: pointer;
|
|
border: 2px solid white;
|
|
transition: background-color 0.1s ease;
|
|
}
|
|
|
|
.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 {
|
|
background-color: #ff8;
|
|
}
|