2019-10-13 14:08:50 +02:00
|
|
|
/*
|
2020-04-10 15:27:39 +02:00
|
|
|
Copyright 2020 Tulir Asokan <tulir@maunium.net>
|
2019-10-13 14:08:50 +02:00
|
|
|
|
|
|
|
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_ReplyTile {
|
|
|
|
position: relative;
|
2021-07-16 19:26:04 +02:00
|
|
|
padding: 2px 0;
|
|
|
|
font-size: $font-14px;
|
2021-07-14 10:14:44 +02:00
|
|
|
|
2021-07-15 15:17:41 +02:00
|
|
|
&.mx_ReplyTile_audio .mx_MFileBody_info_icon::before {
|
|
|
|
mask-image: url("$(res)/img/element-icons/speaker.svg");
|
|
|
|
}
|
|
|
|
|
|
|
|
&.mx_ReplyTile_video .mx_MFileBody_info_icon::before {
|
|
|
|
mask-image: url("$(res)/img/element-icons/call/video-call.svg");
|
|
|
|
}
|
|
|
|
|
2021-07-14 10:47:29 +02:00
|
|
|
.mx_MFileBody {
|
|
|
|
.mx_MFileBody_info {
|
|
|
|
margin: 5px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MFileBody_download {
|
|
|
|
display: none;
|
|
|
|
}
|
2021-07-14 10:14:44 +02:00
|
|
|
}
|
2021-07-02 15:09:02 +02:00
|
|
|
|
2021-07-16 19:26:04 +02:00
|
|
|
> a {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
text-decoration: none;
|
2021-08-12 11:27:12 +02:00
|
|
|
color: $primary-content;
|
2021-07-02 15:09:02 +02:00
|
|
|
}
|
2019-10-13 14:08:50 +02:00
|
|
|
|
2022-01-17 16:04:37 +01:00
|
|
|
.mx_RedactedBody,
|
|
|
|
.mx_HiddenBody {
|
|
|
|
|
2021-07-16 19:26:04 +02:00
|
|
|
padding: 4px 0 2px 20px;
|
2020-04-10 15:03:27 +02:00
|
|
|
|
2021-07-16 19:26:04 +02:00
|
|
|
&::before {
|
|
|
|
height: 13px;
|
|
|
|
width: 13px;
|
|
|
|
top: 5px;
|
|
|
|
}
|
2019-10-13 14:08:50 +02:00
|
|
|
}
|
2021-07-15 15:38:07 +02:00
|
|
|
|
2022-07-27 15:39:29 +02:00
|
|
|
/* We do reply size limiting with CSS to avoid duplicating the TextualBody component. */
|
2021-07-16 19:26:04 +02:00
|
|
|
.mx_EventTile_content {
|
|
|
|
$reply-lines: 2;
|
|
|
|
|
2020-04-10 15:18:06 +02:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
-webkit-line-clamp: $reply-lines;
|
2021-07-16 19:26:04 +02:00
|
|
|
|
|
|
|
.mx_EventTile_body.mx_EventTile_bigEmoji {
|
2022-07-27 15:39:29 +02:00
|
|
|
line-height: $font-22px !important; /* Same as var(--EventTile_group_line-line-height) */
|
|
|
|
font-size: $font-14px !important; /* Override the big emoji override */
|
2021-07-16 19:26:04 +02:00
|
|
|
}
|
|
|
|
|
2022-07-27 15:39:29 +02:00
|
|
|
/* Hide line numbers */
|
2021-07-16 19:26:04 +02:00
|
|
|
.mx_EventTile_lineNumbers {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-07-27 15:39:29 +02:00
|
|
|
/* Hack to cut content in <pre> tags too */
|
2021-07-16 19:26:04 +02:00
|
|
|
.mx_EventTile_pre_container > pre {
|
2021-10-25 11:42:32 +02:00
|
|
|
overflow-x: scroll;
|
|
|
|
overflow-y: hidden;
|
2021-07-16 19:26:04 +02:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
-webkit-line-clamp: $reply-lines;
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.markdown-body blockquote,
|
|
|
|
.markdown-body dl,
|
|
|
|
.markdown-body ol,
|
|
|
|
.markdown-body p,
|
|
|
|
.markdown-body pre,
|
|
|
|
.markdown-body table,
|
|
|
|
.markdown-body ul {
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
2020-04-10 15:18:06 +02:00
|
|
|
}
|
2021-07-13 08:24:18 +02:00
|
|
|
|
2021-07-16 19:26:04 +02:00
|
|
|
&.mx_ReplyTile_info {
|
|
|
|
padding-top: 0;
|
2020-04-10 15:18:06 +02:00
|
|
|
}
|
2019-10-13 14:08:50 +02:00
|
|
|
|
2022-03-23 06:45:53 +01:00
|
|
|
.mx_DisambiguatedProfile {
|
2021-07-16 19:26:04 +02:00
|
|
|
line-height: $font-17px;
|
|
|
|
}
|
2019-10-13 14:08:50 +02:00
|
|
|
}
|