mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 21:24:59 +08:00
da34e6241d
Font size of the whole app would ideally be controlled by a single value. This value is currently hard coded using the :root CSS selector. It is the intention to make this value configurable within riot. In the interim all font-sizes have been converted to rem by the simple process of regex. Replacing px values with their equivalent rem values assuming a font size of 15px and then rounded to three decimal places, which was the base at the time of this transformation. I'm expecting another commit cleaning up rem values but I thought it best to leave that to review. This commit doesn't address any scaling issues. I thought it better to land this unwieldy, mechanical, invisible change before the others otherwise the pr would be impossible to review thoroughly.
112 lines
2.5 KiB
SCSS
112 lines
2.5 KiB
SCSS
/*
|
|
Copyright 2016 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_FilePanel {
|
|
order: 2;
|
|
flex: 1 1 0;
|
|
overflow-y: auto;
|
|
display: flex;
|
|
}
|
|
|
|
.mx_FilePanel .mx_RoomView_messageListWrapper {
|
|
margin-right: 20px;
|
|
}
|
|
|
|
.mx_FilePanel .mx_RoomView_MessageList h2 {
|
|
display: none;
|
|
}
|
|
|
|
/* FIXME: rather than having EventTile's default CSS be for MessagePanel,
|
|
we should make EventTile a base CSS class and customise it specifically
|
|
for usage in {Message,File,Notification}Panel. */
|
|
|
|
.mx_FilePanel .mx_EventTile_avatar {
|
|
display: none;
|
|
}
|
|
|
|
/* Overrides for the attachment body tiles */
|
|
|
|
.mx_FilePanel .mx_EventTile {
|
|
word-break: break-word;
|
|
}
|
|
|
|
.mx_FilePanel .mx_EventTile .mx_MImageBody {
|
|
margin-right: 0px;
|
|
}
|
|
|
|
.mx_FilePanel .mx_EventTile .mx_MFileBody_download {
|
|
display: flex;
|
|
font-size: 0.933rem;
|
|
color: $event-timestamp-color;
|
|
}
|
|
|
|
.mx_FilePanel .mx_EventTile .mx_MFileBody_downloadLink {
|
|
flex: 1 1 auto;
|
|
color: $light-fg-color;
|
|
}
|
|
|
|
.mx_FilePanel .mx_EventTile .mx_MImageBody_size {
|
|
flex: 1 0 0;
|
|
font-size: 0.733rem;
|
|
text-align: right;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
/* Overides for the sender details line */
|
|
|
|
.mx_FilePanel .mx_EventTile_senderDetails {
|
|
display: flex;
|
|
margin-top: -2px;
|
|
}
|
|
|
|
.mx_FilePanel .mx_EventTile_senderDetailsLink {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.mx_FilePanel .mx_EventTile .mx_SenderProfile {
|
|
flex: 1 1 auto;
|
|
line-height: initial;
|
|
padding: 0px;
|
|
font-size: 0.733rem;
|
|
opacity: 1.0;
|
|
color: $event-timestamp-color;
|
|
}
|
|
|
|
.mx_FilePanel .mx_EventTile .mx_MessageTimestamp {
|
|
flex: 1 0 0;
|
|
text-align: right;
|
|
visibility: visible;
|
|
position: initial;
|
|
font-size: 0.733rem;
|
|
opacity: 1.0;
|
|
color: $event-timestamp-color;
|
|
}
|
|
|
|
/* Overrides for the wrappers around the body tile */
|
|
|
|
.mx_FilePanel .mx_EventTile_line {
|
|
margin-right: 0px;
|
|
padding-left: 0px;
|
|
}
|
|
|
|
.mx_FilePanel .mx_EventTile_selected .mx_EventTile_line {
|
|
padding-left: 0px;
|
|
}
|
|
|
|
.mx_FilePanel .mx_EventTile:hover .mx_EventTile_line {
|
|
background-color: $primary-bg-color;
|
|
}
|