mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
ffac30083e
* sans-serif font * use display: table for the message list so that everything lines up nicely * switch to flexbox layout rather than position absolutes to avoid assuming a full screen UI and improve maintainability (and better match atomify) * neutralise the colouring and styling of highlighted rooms in the recents list * switch from ul + li's to a series of divs in some places where the li's are achieving nothing but adding more complexity to the DOM * add mx_MessageTileType as a generic css base class for all message tiles
47 lines
957 B
CSS
47 lines
957 B
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 {
|
|
height: 20px;
|
|
margin-top: 1px;
|
|
margin-bottom: 1px;
|
|
padding: 5px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.mx_RoomTile.selected {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.mx_RoomTile_name {
|
|
}
|
|
|
|
.mx_RoomTile div {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.mx_RoomTile.unread {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.mx_RoomTile.invited {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.mx_RoomTile:hover {
|
|
}
|