2019-10-13 20:08:50 +08:00
|
|
|
/*
|
2020-04-10 21:27:39 +08:00
|
|
|
Copyright 2020 Tulir Asokan <tulir@maunium.net>
|
2019-10-13 20:08:50 +08: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 {
|
|
|
|
max-width: 100%;
|
|
|
|
clear: both;
|
|
|
|
padding-top: 2px;
|
|
|
|
padding-bottom: 2px;
|
|
|
|
font-size: 14px;
|
|
|
|
position: relative;
|
|
|
|
line-height: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_ReplyTile > a {
|
2021-07-02 20:22:46 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2019-10-13 20:08:50 +08:00
|
|
|
text-decoration: none;
|
|
|
|
color: $primary-fg-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We do reply size limiting with CSS to avoid duplicating the TextualBody component.
|
|
|
|
.mx_ReplyTile .mx_EventTile_content {
|
|
|
|
$reply-lines: 2;
|
|
|
|
$line-height: 22px;
|
2020-04-10 21:18:06 +08:00
|
|
|
$max-height: 66px;
|
2019-10-13 20:08:50 +08:00
|
|
|
|
2020-04-10 21:03:27 +08:00
|
|
|
pointer-events: none;
|
|
|
|
|
2019-10-13 20:08:50 +08:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
-webkit-line-clamp: $reply-lines;
|
|
|
|
line-height: $line-height;
|
2020-04-10 21:18:06 +08:00
|
|
|
max-height: $max-height;
|
2019-10-13 20:08:50 +08:00
|
|
|
|
|
|
|
.mx_EventTile_body.mx_EventTile_bigEmoji {
|
|
|
|
line-height: $line-height !important;
|
|
|
|
// Override the big emoji override
|
|
|
|
font-size: 14px !important;
|
|
|
|
}
|
2020-04-10 21:18:06 +08:00
|
|
|
|
|
|
|
// Hack to cut content in <pre> tags too
|
|
|
|
.mx_EventTile_pre_container > pre {
|
|
|
|
overflow: hidden;
|
|
|
|
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;
|
|
|
|
}
|
2019-10-13 20:08:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_ReplyTile.mx_ReplyTile_info {
|
|
|
|
padding-top: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_ReplyTile .mx_SenderProfile {
|
|
|
|
color: $primary-fg-color;
|
|
|
|
font-size: 14px;
|
|
|
|
display: inline-block; /* anti-zalgo, with overflow hidden */
|
|
|
|
overflow: hidden;
|
|
|
|
cursor: pointer;
|
|
|
|
padding-left: 0px; /* left gutter */
|
|
|
|
padding-bottom: 0px;
|
|
|
|
padding-top: 0px;
|
|
|
|
margin: 0px;
|
|
|
|
line-height: 17px;
|
|
|
|
/* the next three lines, along with overflow hidden, truncate long display names */
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
max-width: calc(100% - 65px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_ReplyTile_redacted .mx_UnknownBody {
|
|
|
|
--lozenge-color: $event-redacted-fg-color;
|
|
|
|
--lozenge-border-color: $event-redacted-border-color;
|
|
|
|
display: block;
|
|
|
|
height: 22px;
|
|
|
|
width: 250px;
|
|
|
|
border-radius: 11px;
|
|
|
|
background:
|
|
|
|
repeating-linear-gradient(
|
|
|
|
-45deg,
|
|
|
|
var(--lozenge-color),
|
|
|
|
var(--lozenge-color) 3px,
|
|
|
|
transparent 3px,
|
|
|
|
transparent 6px
|
|
|
|
);
|
|
|
|
box-shadow: 0px 0px 3px var(--lozenge-border-color) inset;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_ReplyTile_sending.mx_ReplyTile_redacted .mx_UnknownBody {
|
|
|
|
opacity: 0.4;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_ReplyTile_contextual {
|
|
|
|
opacity: 0.4;
|
|
|
|
}
|