element-web/css/molecules/RoomTile.css

29 lines
466 B
CSS
Raw Normal View History

2015-06-12 13:59:33 +00:00
.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:hover {
background-color: #aad;
2015-06-12 13:59:33 +00:00
}
.mx_RoomTile_name {
font-size: 80%;
font-weight: bold;
}
.mx_RoomTile div {
overflow: hidden;
text-overflow: ellipsis;
}