mirror of https://github.com/vector-im/riot-web
73 lines
1.4 KiB
CSS
73 lines
1.4 KiB
CSS
/*
|
|
Copyright 2015 OpenMarket Ltd
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
.mx_RoomTile {
|
|
cursor: pointer;
|
|
display: table-row;
|
|
}
|
|
|
|
.mx_RoomTile_selected {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.mx_RoomTile_avatar {
|
|
display: table-cell;
|
|
padding-right: 12px;
|
|
padding-top: 3px;
|
|
padding-bottom: 3px;
|
|
vertical-align: middle;
|
|
width: 32px;
|
|
height: 32px;
|
|
}
|
|
|
|
.mx_RoomTile_avatar img {
|
|
border-radius: 20px;
|
|
background-color: #dbdbdb;
|
|
}
|
|
|
|
.mx_RoomTile_name {
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.mx_RoomTile_badge {
|
|
float: right;
|
|
background-color: #80cef4;
|
|
color: #fff;
|
|
border-radius: 26px;
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
line-height: 28px;
|
|
width: 26px;
|
|
height: 26px;
|
|
text-align: center;
|
|
}
|
|
|
|
.mx_RoomTile_unread {
|
|
}
|
|
|
|
.mx_RoomTile_highlight {
|
|
}
|
|
|
|
.mx_RoomTile_invited {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.mx_RoomTile:hover {
|
|
}
|