2018-04-12 01:23:35 +02:00
|
|
|
/*
|
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2020-01-02 17:52:25 +01:00
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
2018-04-12 01:23:35 +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.
|
|
|
|
*/
|
|
|
|
|
2020-07-13 23:56:20 +02:00
|
|
|
$left-gutter: 64px;
|
|
|
|
|
2018-04-12 01:23:35 +02:00
|
|
|
.mx_EventTile {
|
|
|
|
max-width: 100%;
|
|
|
|
clear: both;
|
|
|
|
padding-top: 18px;
|
2020-03-31 16:26:23 +02:00
|
|
|
font-size: $font-14px;
|
2018-04-12 01:23:35 +02:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile.mx_EventTile_info {
|
2021-02-03 18:41:09 +01:00
|
|
|
padding-top: 1px;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_avatar {
|
|
|
|
top: 14px;
|
|
|
|
left: 8px;
|
|
|
|
cursor: pointer;
|
2019-04-21 23:18:06 +02:00
|
|
|
user-select: none;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile.mx_EventTile_info .mx_EventTile_avatar {
|
2021-02-03 18:41:09 +01:00
|
|
|
top: $font-6px;
|
2020-07-13 23:56:20 +02:00
|
|
|
left: $left-gutter;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_continuation {
|
2019-05-21 13:50:27 +02:00
|
|
|
padding-top: 0px !important;
|
2019-05-21 12:20:58 +02:00
|
|
|
|
|
|
|
&.mx_EventTile_isEditing {
|
2019-05-21 13:50:27 +02:00
|
|
|
padding-top: 5px !important;
|
2019-05-21 12:20:58 +02:00
|
|
|
margin-top: -5px;
|
|
|
|
}
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
2019-05-17 16:31:09 +02:00
|
|
|
.mx_EventTile_isEditing {
|
|
|
|
background-color: $header-panel-bg-color;
|
|
|
|
}
|
|
|
|
|
2018-04-12 01:23:35 +02:00
|
|
|
.mx_EventTile .mx_SenderProfile {
|
|
|
|
color: $primary-fg-color;
|
2020-03-31 16:26:23 +02:00
|
|
|
font-size: $font-14px;
|
2019-02-15 16:55:16 +01:00
|
|
|
display: inline-block; /* anti-zalgo, with overflow hidden */
|
2019-06-07 04:41:10 +02:00
|
|
|
overflow: hidden;
|
2018-04-12 01:23:35 +02:00
|
|
|
cursor: pointer;
|
|
|
|
padding-bottom: 0px;
|
|
|
|
padding-top: 0px;
|
|
|
|
margin: 0px;
|
2019-06-07 04:41:10 +02:00
|
|
|
/* the next three lines, along with overflow hidden, truncate long display names */
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
2020-07-13 23:56:20 +02:00
|
|
|
max-width: calc(100% - $left-gutter);
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile .mx_SenderProfile .mx_Flair {
|
|
|
|
opacity: 0.7;
|
|
|
|
margin-left: 5px;
|
2019-03-05 14:49:07 +01:00
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
overflow: hidden;
|
2019-04-21 23:18:06 +02:00
|
|
|
user-select: none;
|
2019-03-05 14:49:07 +01:00
|
|
|
|
|
|
|
img {
|
|
|
|
vertical-align: -2px;
|
|
|
|
margin-right: 2px;
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
2019-05-17 17:01:52 +02:00
|
|
|
.mx_EventTile_isEditing .mx_MessageTimestamp {
|
|
|
|
visibility: hidden !important;
|
|
|
|
}
|
|
|
|
|
2018-04-12 01:23:35 +02:00
|
|
|
.mx_EventTile .mx_MessageTimestamp {
|
|
|
|
display: block;
|
2020-05-22 00:34:23 +02:00
|
|
|
visibility: hidden;
|
2018-04-12 01:23:35 +02:00
|
|
|
white-space: nowrap;
|
|
|
|
left: 0px;
|
|
|
|
text-align: center;
|
2019-04-21 23:18:06 +02:00
|
|
|
user-select: none;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
2020-04-27 18:50:50 +02:00
|
|
|
.mx_EventTile_continuation .mx_EventTile_line {
|
2020-04-09 14:36:53 +02:00
|
|
|
clear: both;
|
2020-04-27 18:50:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_line, .mx_EventTile_reply {
|
2018-04-12 01:23:35 +02:00
|
|
|
position: relative;
|
2020-07-13 23:56:20 +02:00
|
|
|
padding-left: $left-gutter;
|
2018-04-12 01:23:35 +02:00
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
2020-03-31 13:29:58 +02:00
|
|
|
.mx_RoomView_timeline_rr_enabled,
|
|
|
|
// on ELS we need the margin to allow interaction with the expand/collapse button which is normally in the RR gutter
|
|
|
|
.mx_EventListSummary {
|
2020-05-03 14:28:16 +02:00
|
|
|
.mx_EventTile_line {
|
2020-03-20 10:29:59 +01:00
|
|
|
/* ideally should be 100px, but 95px gives us a max thumbnail size of 800x600, which is nice */
|
|
|
|
margin-right: 110px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-07 20:11:31 +01:00
|
|
|
.mx_EventTile_bubbleContainer {
|
2019-11-07 17:39:50 +01:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 100px;
|
|
|
|
|
|
|
|
.mx_EventTile_line {
|
2020-11-05 16:39:37 +01:00
|
|
|
margin-right: 0;
|
2019-11-07 17:39:50 +01:00
|
|
|
grid-column: 1 / 3;
|
2020-11-10 11:00:55 +01:00
|
|
|
// override default padding of mx_EventTile_line so that we can be centered
|
2020-11-05 16:39:37 +01:00
|
|
|
padding: 0 !important;
|
2019-11-07 17:39:50 +01:00
|
|
|
}
|
2019-11-08 17:10:51 +01:00
|
|
|
|
|
|
|
.mx_EventTile_msgOption {
|
|
|
|
grid-column: 2;
|
|
|
|
}
|
2019-11-07 17:39:50 +01:00
|
|
|
}
|
|
|
|
|
2018-04-20 10:23:27 +02:00
|
|
|
.mx_EventTile_reply {
|
2018-04-12 01:23:35 +02:00
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* HACK to override line-height which is already marked important elsewhere */
|
|
|
|
.mx_EventTile_bigEmoji.mx_EventTile_bigEmoji {
|
2019-07-09 19:15:10 +02:00
|
|
|
font-size: 48px !important;
|
|
|
|
line-height: 57px !important;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
2019-07-10 17:55:03 +02:00
|
|
|
.mx_MessagePanel_alwaysShowTimestamps .mx_MessageTimestamp {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_selected > div > a > .mx_MessageTimestamp {
|
|
|
|
left: 3px;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Explicit relationships so that it doesn't apply to nested EventTile components (e.g in Replies)
|
2020-05-22 00:34:23 +02:00
|
|
|
// The first set is to handle the 'group layout' (default) and the second for the IRC layout
|
2019-07-10 17:55:03 +02:00
|
|
|
.mx_EventTile_last > div > a > .mx_MessageTimestamp,
|
|
|
|
.mx_EventTile:hover > div > a > .mx_MessageTimestamp,
|
2019-11-05 13:01:30 +01:00
|
|
|
.mx_EventTile.mx_EventTile_actionBarFocused > div > a > .mx_MessageTimestamp,
|
2020-05-22 00:34:23 +02:00
|
|
|
.mx_EventTile.focus-visible:focus-within > div > a > .mx_MessageTimestamp,
|
|
|
|
.mx_IRCLayout .mx_EventTile_last > a > .mx_MessageTimestamp,
|
|
|
|
.mx_IRCLayout .mx_EventTile:hover > a > .mx_MessageTimestamp,
|
2021-04-13 12:20:53 +02:00
|
|
|
.mx_IRCLayout .mx_ReplyThread .mx_EventTile > a > .mx_MessageTimestamp,
|
2020-05-22 00:34:23 +02:00
|
|
|
.mx_IRCLayout .mx_EventTile.mx_EventTile_actionBarFocused > a > .mx_MessageTimestamp,
|
|
|
|
.mx_IRCLayout .mx_EventTile.focus-visible:focus-within > a > .mx_MessageTimestamp {
|
2019-07-10 17:55:03 +02:00
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile:hover .mx_MessageActionBar,
|
2019-11-05 13:01:30 +01:00
|
|
|
.mx_EventTile.mx_EventTile_actionBarFocused .mx_MessageActionBar,
|
2019-12-07 14:07:52 +01:00
|
|
|
[data-whatinput='keyboard'] .mx_EventTile:focus-within .mx_MessageActionBar,
|
2019-11-05 13:01:30 +01:00
|
|
|
.mx_EventTile.focus-visible:focus-within .mx_MessageActionBar {
|
2019-07-10 17:55:03 +02:00
|
|
|
visibility: visible;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* this is used for the tile for the event which is selected via the URL.
|
|
|
|
* TODO: ultimately we probably want some transition on here.
|
|
|
|
*/
|
|
|
|
.mx_EventTile_selected > .mx_EventTile_line {
|
2020-07-13 23:21:06 +02:00
|
|
|
border-left: $accent-color 4px solid;
|
2018-04-12 01:23:35 +02:00
|
|
|
padding-left: 60px;
|
|
|
|
background-color: $event-selected-color;
|
|
|
|
}
|
|
|
|
|
2019-07-10 17:55:03 +02:00
|
|
|
.mx_EventTile_highlight,
|
|
|
|
.mx_EventTile_highlight .markdown-body {
|
|
|
|
color: $event-highlight-fg-color;
|
|
|
|
|
|
|
|
.mx_EventTile_line {
|
|
|
|
background-color: $event-highlight-bg-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-06 11:41:10 +01:00
|
|
|
.mx_EventTile_selected.mx_EventTile_info .mx_EventTile_line {
|
|
|
|
padding-left: 78px;
|
|
|
|
}
|
|
|
|
|
2018-04-20 10:37:25 +02:00
|
|
|
.mx_EventTile:hover .mx_EventTile_line,
|
2019-11-05 13:01:30 +01:00
|
|
|
.mx_EventTile.mx_EventTile_actionBarFocused .mx_EventTile_line,
|
|
|
|
.mx_EventTile.focus-visible:focus-within .mx_EventTile_line {
|
2018-04-12 01:23:35 +02:00
|
|
|
background-color: $event-selected-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_searchHighlight {
|
|
|
|
background-color: $accent-color;
|
|
|
|
color: $accent-fg-color;
|
|
|
|
border-radius: 5px;
|
|
|
|
padding-left: 2px;
|
|
|
|
padding-right: 2px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_searchHighlight a {
|
|
|
|
background-color: $accent-color;
|
|
|
|
color: $accent-fg-color;
|
|
|
|
}
|
|
|
|
|
2021-02-28 06:46:38 +01:00
|
|
|
.mx_EventTile_notSent {
|
|
|
|
color: $event-notsent-color;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
2021-02-28 06:46:38 +01:00
|
|
|
.mx_EventTile_receiptSent,
|
|
|
|
.mx_EventTile_receiptSending {
|
|
|
|
// We don't use `position: relative` on the element because then it won't line
|
|
|
|
// up with the other read receipts
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
background-color: $tertiary-fg-color;
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-position: center;
|
|
|
|
mask-size: 14px;
|
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
}
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
2021-02-28 06:46:38 +01:00
|
|
|
.mx_EventTile_receiptSent::before {
|
|
|
|
mask-image: url('$(res)/img/element-icons/circle-sent.svg');
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
2021-02-28 06:46:38 +01:00
|
|
|
.mx_EventTile_receiptSending::before {
|
|
|
|
mask-image: url('$(res)/img/element-icons/circle-sending.svg');
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_contextual {
|
|
|
|
opacity: 0.4;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_msgOption {
|
|
|
|
float: right;
|
|
|
|
text-align: right;
|
|
|
|
position: relative;
|
|
|
|
width: 90px;
|
|
|
|
|
|
|
|
/* Hack to stop the height of this pushing the messages apart.
|
|
|
|
Replaces margin-top: -6px. This interacts better with a read
|
|
|
|
marker being in between. Content overflows. */
|
|
|
|
height: 1px;
|
|
|
|
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_msgOption a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_readAvatars {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
2021-02-23 19:16:52 +01:00
|
|
|
// This aligns the avatar with the last line of the
|
2021-02-23 19:14:36 +01:00
|
|
|
// message. We want to move it one line up - 2.2rem
|
|
|
|
top: -2.2rem;
|
2019-04-21 23:18:06 +02:00
|
|
|
user-select: none;
|
2019-06-06 14:59:07 +02:00
|
|
|
z-index: 1;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_readAvatars .mx_BaseAvatar {
|
|
|
|
position: absolute;
|
|
|
|
display: inline-block;
|
2020-04-06 17:23:52 +02:00
|
|
|
height: $font-14px;
|
|
|
|
width: $font-14px;
|
2021-04-08 10:27:41 +02:00
|
|
|
|
|
|
|
transition:
|
2021-04-08 12:05:45 +02:00
|
|
|
left var(--transition-short) ease-out,
|
|
|
|
top var(--transition-standard) ease-out;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_readAvatarRemainder {
|
|
|
|
color: $event-timestamp-color;
|
2020-03-31 16:26:23 +02:00
|
|
|
font-size: $font-11px;
|
2018-04-12 01:23:35 +02:00
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* all the overflow-y: hidden; are to trap Zalgos -
|
|
|
|
but they introduce an implicit overflow-x: auto.
|
|
|
|
so make that explicitly hidden too to avoid random
|
|
|
|
horizontal scrollbars occasionally appearing, like in
|
|
|
|
https://github.com/vector-im/vector-web/issues/1154
|
|
|
|
*/
|
|
|
|
.mx_EventTile_content {
|
|
|
|
display: block;
|
|
|
|
overflow-y: hidden;
|
|
|
|
overflow-x: hidden;
|
|
|
|
margin-right: 34px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* De-zalgoing */
|
|
|
|
.mx_EventTile_body {
|
|
|
|
overflow-y: hidden;
|
|
|
|
}
|
|
|
|
|
2019-05-22 20:41:27 +02:00
|
|
|
/* Spoiler stuff */
|
|
|
|
.mx_EventTile_spoiler {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_spoiler_reason {
|
|
|
|
color: $event-timestamp-color;
|
2020-03-31 16:26:23 +02:00
|
|
|
font-size: $font-11px;
|
2019-05-22 20:41:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_spoiler_content {
|
2019-06-11 21:08:45 +02:00
|
|
|
filter: blur(5px) saturate(0.1) sepia(1);
|
|
|
|
transition-duration: 0.5s;
|
2019-05-22 20:41:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_spoiler.visible > .mx_EventTile_spoiler_content {
|
2019-06-11 21:08:45 +02:00
|
|
|
filter: none;
|
2019-05-22 20:41:27 +02:00
|
|
|
}
|
|
|
|
|
2018-04-12 01:23:35 +02:00
|
|
|
.mx_EventTile_e2eIcon {
|
|
|
|
position: absolute;
|
2019-12-04 06:41:22 +01:00
|
|
|
top: 6px;
|
2020-07-14 00:56:25 +02:00
|
|
|
left: 44px;
|
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
2019-12-04 06:41:22 +01:00
|
|
|
display: block;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
2019-02-14 17:00:47 +01:00
|
|
|
opacity: 0.2;
|
2019-12-04 06:41:22 +01:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: contain;
|
2019-02-01 16:43:12 +01:00
|
|
|
|
2020-07-14 01:52:03 +02:00
|
|
|
&::before, &::after {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-position: center;
|
|
|
|
mask-size: contain;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
background-color: #ffffff;
|
2020-07-20 15:05:07 +02:00
|
|
|
mask-image: url('$(res)/img/e2e/normal.svg');
|
2020-07-14 01:52:03 +02:00
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-position: center;
|
|
|
|
mask-size: 90%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-01 16:43:12 +01:00
|
|
|
.mx_EventTile_e2eIcon_undecryptable, .mx_EventTile_e2eIcon_unverified {
|
2020-07-14 01:52:03 +02:00
|
|
|
&::after {
|
|
|
|
mask-image: url('$(res)/img/e2e/warning.svg');
|
|
|
|
background-color: $notice-primary-color;
|
|
|
|
}
|
2019-12-04 06:41:22 +01:00
|
|
|
opacity: 1;
|
2019-02-01 16:43:12 +01:00
|
|
|
}
|
|
|
|
|
2020-01-20 18:14:31 +01:00
|
|
|
.mx_EventTile_e2eIcon_unknown {
|
2020-07-14 01:52:03 +02:00
|
|
|
&::after {
|
|
|
|
mask-image: url('$(res)/img/e2e/warning.svg');
|
|
|
|
background-color: $notice-primary-color;
|
|
|
|
}
|
2020-01-20 18:25:08 +01:00
|
|
|
opacity: 1;
|
2020-01-20 16:16:41 +01:00
|
|
|
}
|
|
|
|
|
2019-02-01 16:43:12 +01:00
|
|
|
.mx_EventTile_e2eIcon_unencrypted {
|
2020-07-14 01:52:03 +02:00
|
|
|
&::after {
|
|
|
|
mask-image: url('$(res)/img/e2e/warning.svg');
|
|
|
|
background-color: $notice-primary-color;
|
|
|
|
}
|
2019-12-04 06:41:22 +01:00
|
|
|
opacity: 1;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
2020-06-19 03:57:33 +02:00
|
|
|
.mx_EventTile_e2eIcon_unauthenticated {
|
2020-07-14 01:52:03 +02:00
|
|
|
&::after {
|
|
|
|
mask-image: url('$(res)/img/e2e/normal.svg');
|
2020-07-14 14:30:05 +02:00
|
|
|
background-color: $composer-e2e-icon-color;
|
2020-07-14 01:52:03 +02:00
|
|
|
}
|
2020-06-19 03:57:33 +02:00
|
|
|
opacity: 1;
|
|
|
|
}
|
2018-04-12 01:23:35 +02:00
|
|
|
|
|
|
|
.mx_EventTile_keyRequestInfo {
|
2020-03-31 16:26:23 +02:00
|
|
|
font-size: $font-12px;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_keyRequestInfo_text {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_keyRequestInfo_text a {
|
|
|
|
color: $primary-fg-color;
|
|
|
|
text-decoration: underline;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_keyRequestInfo_tooltip_contents p {
|
|
|
|
text-align: auto;
|
|
|
|
margin-left: 3px;
|
|
|
|
margin-right: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_keyRequestInfo_tooltip_contents p:first-child {
|
|
|
|
margin-top: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_keyRequestInfo_tooltip_contents p:last-child {
|
|
|
|
margin-bottom: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile:hover.mx_EventTile_verified .mx_EventTile_line,
|
2020-01-20 16:16:41 +01:00
|
|
|
.mx_EventTile:hover.mx_EventTile_unverified .mx_EventTile_line,
|
2020-01-20 18:14:31 +01:00
|
|
|
.mx_EventTile:hover.mx_EventTile_unknown .mx_EventTile_line {
|
2018-04-12 01:23:35 +02:00
|
|
|
padding-left: 60px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile:hover.mx_EventTile_verified .mx_EventTile_line {
|
2021-01-31 11:11:34 +01:00
|
|
|
border-left: $e2e-verified-color $EventTile_e2e_state_indicator_width solid;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
2019-07-10 17:55:03 +02:00
|
|
|
|
2018-04-12 01:23:35 +02:00
|
|
|
.mx_EventTile:hover.mx_EventTile_unverified .mx_EventTile_line {
|
2021-01-31 11:11:34 +01:00
|
|
|
border-left: $e2e-unverified-color $EventTile_e2e_state_indicator_width solid;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
2020-01-20 18:14:31 +01:00
|
|
|
.mx_EventTile:hover.mx_EventTile_unknown .mx_EventTile_line {
|
2021-01-31 11:11:34 +01:00
|
|
|
border-left: $e2e-unknown-color $EventTile_e2e_state_indicator_width solid;
|
2020-01-20 16:16:41 +01:00
|
|
|
}
|
|
|
|
|
2019-07-10 17:55:03 +02:00
|
|
|
.mx_EventTile:hover.mx_EventTile_verified.mx_EventTile_info .mx_EventTile_line,
|
2020-01-20 16:16:41 +01:00
|
|
|
.mx_EventTile:hover.mx_EventTile_unverified.mx_EventTile_info .mx_EventTile_line,
|
2020-01-20 18:14:31 +01:00
|
|
|
.mx_EventTile:hover.mx_EventTile_unknown.mx_EventTile_info .mx_EventTile_line {
|
2019-07-10 17:55:03 +02:00
|
|
|
padding-left: 78px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* End to end encryption stuff */
|
|
|
|
.mx_EventTile:hover .mx_EventTile_e2eIcon {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2018-04-27 12:13:09 +02:00
|
|
|
// Explicit relationships so that it doesn't apply to nested EventTile components (e.g in Replies)
|
2018-04-20 10:23:27 +02:00
|
|
|
.mx_EventTile:hover.mx_EventTile_verified .mx_EventTile_line > a > .mx_MessageTimestamp,
|
2020-01-20 16:16:41 +01:00
|
|
|
.mx_EventTile:hover.mx_EventTile_unverified .mx_EventTile_line > a > .mx_MessageTimestamp,
|
2020-01-20 18:14:31 +01:00
|
|
|
.mx_EventTile:hover.mx_EventTile_unknown .mx_EventTile_line > a > .mx_MessageTimestamp {
|
2021-01-31 11:11:34 +01:00
|
|
|
width: $MessageTimestamp_width_hover;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
2018-04-27 12:13:09 +02:00
|
|
|
// Explicit relationships so that it doesn't apply to nested EventTile components (e.g in Replies)
|
2018-04-20 10:23:27 +02:00
|
|
|
.mx_EventTile:hover.mx_EventTile_verified .mx_EventTile_line > .mx_EventTile_e2eIcon,
|
2020-01-20 16:16:41 +01:00
|
|
|
.mx_EventTile:hover.mx_EventTile_unverified .mx_EventTile_line > .mx_EventTile_e2eIcon,
|
2020-01-20 18:14:31 +01:00
|
|
|
.mx_EventTile:hover.mx_EventTile_unknown .mx_EventTile_line > .mx_EventTile_e2eIcon {
|
2018-04-12 01:23:35 +02:00
|
|
|
display: block;
|
|
|
|
left: 41px;
|
|
|
|
}
|
|
|
|
|
2019-05-17 12:36:36 +02:00
|
|
|
.mx_EventTile_content .mx_EventTile_edited {
|
|
|
|
user-select: none;
|
2020-03-31 16:26:23 +02:00
|
|
|
font-size: $font-12px;
|
2019-05-17 12:36:36 +02:00
|
|
|
color: $roomtopic-color;
|
|
|
|
display: inline-block;
|
|
|
|
margin-left: 9px;
|
2019-06-26 12:15:13 +02:00
|
|
|
cursor: pointer;
|
2019-05-17 12:36:36 +02:00
|
|
|
}
|
|
|
|
|
2018-04-12 01:23:35 +02:00
|
|
|
/* Various markdown overrides */
|
|
|
|
|
2019-07-10 17:55:03 +02:00
|
|
|
.mx_EventTile_body pre {
|
|
|
|
border: 1px solid transparent;
|
|
|
|
}
|
|
|
|
|
2018-04-12 01:23:35 +02:00
|
|
|
.mx_EventTile_content .markdown-body {
|
2019-07-09 19:15:10 +02:00
|
|
|
font-family: inherit !important;
|
|
|
|
white-space: normal !important;
|
|
|
|
line-height: inherit !important;
|
2018-04-12 01:23:35 +02:00
|
|
|
color: inherit; // inherit the colour from the dark or light theme by default (but not for code blocks)
|
2020-03-31 16:26:23 +02:00
|
|
|
font-size: $font-14px;
|
2019-02-16 04:28:26 +01:00
|
|
|
|
|
|
|
pre, code {
|
2019-07-09 19:15:10 +02:00
|
|
|
font-family: $monospace-font-family !important;
|
2019-02-16 19:28:35 +01:00
|
|
|
// deliberate constants as we're behind an invert filter
|
2019-02-16 04:28:26 +01:00
|
|
|
color: #333;
|
|
|
|
}
|
2019-07-10 17:55:03 +02:00
|
|
|
|
|
|
|
pre {
|
|
|
|
// have to use overlay rather than auto otherwise Linux and Windows
|
|
|
|
// Chrome gets very confused about vertical spacing:
|
|
|
|
// https://github.com/vector-im/vector-web/issues/754
|
|
|
|
overflow-x: overlay;
|
|
|
|
overflow-y: visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
code {
|
|
|
|
// deliberate constants as we're behind an invert filter
|
|
|
|
background-color: #f8f8f8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-21 10:53:18 +01:00
|
|
|
.mx_EventTile_lineNumbers {
|
|
|
|
float: left;
|
|
|
|
margin: 0 0.5em 0 -1.5em;
|
|
|
|
color: gray;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_lineNumber {
|
|
|
|
text-align: right;
|
|
|
|
display: block;
|
|
|
|
padding-left: 1em;
|
|
|
|
}
|
|
|
|
|
2021-01-19 16:35:32 +01:00
|
|
|
.mx_EventTile_collapsedCodeBlock {
|
|
|
|
max-height: 30vh;
|
2021-01-18 17:49:09 +01:00
|
|
|
}
|
|
|
|
|
2019-11-01 11:50:58 +01:00
|
|
|
.mx_EventTile:hover .mx_EventTile_body pre,
|
2019-11-04 17:47:20 +01:00
|
|
|
.mx_EventTile.focus-visible:focus-within .mx_EventTile_body pre {
|
2019-07-10 17:55:03 +02:00
|
|
|
border: 1px solid #e5e5e5; // deliberate constant as we're behind an invert filter
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
2018-06-27 12:31:55 +02:00
|
|
|
.mx_EventTile_pre_container {
|
|
|
|
// For correct positioning of _copyButton (See TextualBody)
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Inserted adjacent to <pre> blocks, (See TextualBody)
|
2021-01-20 15:01:23 +01:00
|
|
|
.mx_EventTile_button {
|
2018-04-12 01:23:35 +02:00
|
|
|
position: absolute;
|
|
|
|
display: inline-block;
|
|
|
|
visibility: hidden;
|
|
|
|
cursor: pointer;
|
2021-02-13 15:29:38 +01:00
|
|
|
top: 8px;
|
|
|
|
right: 8px;
|
2018-04-12 01:23:35 +02:00
|
|
|
width: 19px;
|
|
|
|
height: 19px;
|
2020-07-27 16:13:02 +02:00
|
|
|
background-color: $message-action-bar-fg-color;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
2021-01-20 15:01:23 +01:00
|
|
|
.mx_EventTile_buttonBottom {
|
2021-02-13 15:29:38 +01:00
|
|
|
top: 33px;
|
2021-01-20 15:01:23 +01:00
|
|
|
}
|
|
|
|
.mx_EventTile_copyButton {
|
|
|
|
mask-image: url($copy-button-url);
|
|
|
|
}
|
2021-01-19 21:02:39 +01:00
|
|
|
.mx_EventTile_collapseButton {
|
2021-02-08 15:22:30 +01:00
|
|
|
mask-size: 75%;
|
|
|
|
mask-position: center;
|
|
|
|
mask-repeat: no-repeat;
|
2021-01-19 21:02:39 +01:00
|
|
|
mask-image: url($collapse-button-url);
|
|
|
|
}
|
|
|
|
.mx_EventTile_expandButton {
|
2021-02-08 15:22:30 +01:00
|
|
|
mask-size: 75%;
|
|
|
|
mask-position: center;
|
|
|
|
mask-repeat: no-repeat;
|
2021-01-19 21:02:39 +01:00
|
|
|
mask-image: url($expand-button-url);
|
|
|
|
}
|
2018-04-12 01:23:35 +02:00
|
|
|
|
2021-01-19 21:02:39 +01:00
|
|
|
.mx_EventTile_body .mx_EventTile_pre_container:focus-within .mx_EventTile_copyButton,
|
2021-01-21 18:18:07 +01:00
|
|
|
.mx_EventTile_body .mx_EventTile_pre_container:hover .mx_EventTile_copyButton,
|
2021-01-19 21:02:39 +01:00
|
|
|
.mx_EventTile_body .mx_EventTile_pre_container:focus-within .mx_EventTile_collapseButton,
|
2021-01-21 18:18:07 +01:00
|
|
|
.mx_EventTile_body .mx_EventTile_pre_container:hover .mx_EventTile_collapseButton,
|
2021-01-19 21:02:39 +01:00
|
|
|
.mx_EventTile_body .mx_EventTile_pre_container:focus-within .mx_EventTile_expandButton,
|
|
|
|
.mx_EventTile_body .mx_EventTile_pre_container:hover .mx_EventTile_expandButton {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
|
2018-04-12 01:23:35 +02:00
|
|
|
.mx_EventTile_content .markdown-body h1,
|
|
|
|
.mx_EventTile_content .markdown-body h2,
|
|
|
|
.mx_EventTile_content .markdown-body h3,
|
|
|
|
.mx_EventTile_content .markdown-body h4,
|
|
|
|
.mx_EventTile_content .markdown-body h5,
|
2019-07-09 19:15:10 +02:00
|
|
|
.mx_EventTile_content .markdown-body h6 {
|
|
|
|
font-family: inherit !important;
|
2018-04-12 01:23:35 +02:00
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Make h1 and h2 the same size as h3. */
|
|
|
|
.mx_EventTile_content .markdown-body h1,
|
2019-07-09 19:15:10 +02:00
|
|
|
.mx_EventTile_content .markdown-body h2 {
|
2018-04-12 01:23:35 +02:00
|
|
|
font-size: 1.5em;
|
2019-07-09 19:15:10 +02:00
|
|
|
border-bottom: none !important; // override GFM
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_content .markdown-body a {
|
2018-12-20 13:46:43 +01:00
|
|
|
color: $accent-color-alt;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EventTile_content .markdown-body .hljs {
|
2019-07-09 19:15:10 +02:00
|
|
|
display: inline !important;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
2019-01-31 11:51:26 +01:00
|
|
|
/*
|
|
|
|
// actually, removing the Italic TTF provides
|
|
|
|
// better results seemingly
|
|
|
|
|
2019-01-16 13:53:46 +01:00
|
|
|
// compensate for Nunito italics being terrible
|
|
|
|
// https://github.com/google/fonts/issues/1726
|
|
|
|
.mx_EventTile_content .markdown-body em {
|
|
|
|
transform: skewX(-14deg);
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2019-01-31 11:51:26 +01:00
|
|
|
*/
|
2019-01-16 13:53:46 +01:00
|
|
|
|
2018-04-12 01:23:35 +02:00
|
|
|
/* end of overrides */
|
|
|
|
|
2020-02-24 19:04:11 +01:00
|
|
|
.mx_EventTile_tileError {
|
|
|
|
color: red;
|
2020-03-26 14:47:32 +01:00
|
|
|
text-align: center;
|
2020-02-24 19:04:11 +01:00
|
|
|
|
2020-04-06 12:44:46 +02:00
|
|
|
// Remove some of the default tile padding so that the error is centered
|
|
|
|
margin-right: 0;
|
|
|
|
.mx_EventTile_line {
|
|
|
|
padding-left: 0;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
2020-02-24 19:04:11 +01:00
|
|
|
.mx_EventTile_line span {
|
|
|
|
padding: 4px 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
margin-left: 1em;
|
|
|
|
}
|
2020-02-25 11:20:42 +01:00
|
|
|
}
|
2020-01-30 11:18:14 +01:00
|
|
|
|
2020-05-27 19:33:55 +02:00
|
|
|
@media only screen and (max-width: 480px) {
|
|
|
|
.mx_EventTile_line, .mx_EventTile_reply {
|
|
|
|
padding-left: 0;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
.mx_EventTile_content {
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
2020-01-30 11:18:14 +01:00
|
|
|
}
|