2021-05-09 01:48:34 +02:00
|
|
|
/*
|
2021-06-06 03:41:28 +02:00
|
|
|
Copyright 2021 Robin Townsend <robin@robin.town>
|
2021-05-09 01:48:34 +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_ForwardDialog {
|
|
|
|
width: 520px;
|
2021-08-12 11:27:12 +02:00
|
|
|
color: $primary-content;
|
2021-05-09 01:48:34 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
min-height: 0;
|
|
|
|
height: 80vh;
|
|
|
|
|
2021-05-21 18:41:29 +02:00
|
|
|
> h3 {
|
|
|
|
margin: 0 0 6px;
|
2021-08-12 11:30:35 +02:00
|
|
|
color: $secondary-content;
|
2021-05-21 18:41:29 +02:00
|
|
|
font-size: $font-12px;
|
|
|
|
font-weight: $font-semi-bold;
|
|
|
|
line-height: $font-15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .mx_ForwardDialog_preview {
|
2021-05-09 01:48:34 +02:00
|
|
|
max-height: 30%;
|
|
|
|
flex-shrink: 0;
|
2021-06-28 16:37:28 +02:00
|
|
|
overflow-y: auto;
|
2021-05-09 01:48:34 +02:00
|
|
|
|
2022-07-15 15:53:23 +02:00
|
|
|
.mx_EventTile[data-layout="bubble"] {
|
2021-07-22 15:05:44 +02:00
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
|
2021-05-09 01:48:34 +02:00
|
|
|
div {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2022-07-27 15:39:29 +02:00
|
|
|
/* When forwarding messages from encrypted rooms, EventTile will complain */
|
|
|
|
/* that our preview is unencrypted, which doesn't actually matter */
|
|
|
|
/* We also hide download links to not encourage users to try interacting */
|
2022-01-04 09:53:39 +01:00
|
|
|
.mx_EventTile_msgOption,
|
|
|
|
.mx_EventTile_e2eIcon_unencrypted,
|
|
|
|
.mx_EventTile_e2eIcon_warning,
|
2021-06-08 01:19:14 +02:00
|
|
|
.mx_MFileBody_download {
|
|
|
|
display: none;
|
|
|
|
}
|
2021-05-09 01:48:34 +02:00
|
|
|
}
|
|
|
|
|
2021-05-21 18:41:29 +02:00
|
|
|
> hr {
|
|
|
|
width: 100%;
|
|
|
|
border: none;
|
|
|
|
border-top: 1px solid $input-border-color;
|
|
|
|
margin: 12px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .mx_ForwardList {
|
2021-05-09 01:48:34 +02:00
|
|
|
display: contents;
|
|
|
|
|
|
|
|
.mx_SearchBox {
|
2022-07-27 15:39:29 +02:00
|
|
|
/* To match the space around the title */
|
2021-05-09 01:48:34 +02:00
|
|
|
margin: 0 0 15px 0;
|
|
|
|
flex-grow: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_ForwardList_content {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_ForwardList_noResults {
|
|
|
|
display: block;
|
|
|
|
margin-top: 24px;
|
|
|
|
}
|
|
|
|
|
2021-05-19 19:33:48 +02:00
|
|
|
.mx_ForwardList_results {
|
2021-05-09 01:48:34 +02:00
|
|
|
&:not(:first-child) {
|
|
|
|
margin-top: 24px;
|
|
|
|
}
|
|
|
|
|
2022-05-03 19:18:16 +02:00
|
|
|
.mx_ForwardList_resultsList {
|
|
|
|
padding-right: 8px;
|
|
|
|
}
|
|
|
|
|
2021-05-09 01:48:34 +02:00
|
|
|
.mx_ForwardList_entry {
|
|
|
|
display: flex;
|
2021-05-10 19:00:06 +02:00
|
|
|
justify-content: space-between;
|
2021-05-19 19:32:27 +02:00
|
|
|
height: 32px;
|
2021-05-21 18:41:29 +02:00
|
|
|
padding: 6px;
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
|
|
&:hover {
|
2022-03-23 00:07:37 +01:00
|
|
|
background-color: $spacePanel-bg-color;
|
2021-05-21 18:41:29 +02:00
|
|
|
}
|
2021-05-09 01:48:34 +02:00
|
|
|
|
2021-05-10 19:00:06 +02:00
|
|
|
.mx_ForwardList_roomButton {
|
|
|
|
display: flex;
|
2021-05-09 01:48:34 +02:00
|
|
|
margin-right: 12px;
|
2021-05-10 19:00:06 +02:00
|
|
|
min-width: 0;
|
|
|
|
|
2021-05-16 14:39:22 +02:00
|
|
|
.mx_DecoratedRoomAvatar {
|
2021-05-10 19:00:06 +02:00
|
|
|
margin-right: 12px;
|
|
|
|
}
|
|
|
|
|
2021-11-23 10:35:01 +01:00
|
|
|
.mx_ForwardList_entry_name,
|
|
|
|
.mx_ForwardList_entry_detail {
|
2021-05-10 19:00:06 +02:00
|
|
|
line-height: 30px;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
2021-11-23 10:35:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_ForwardList_entry_name {
|
|
|
|
font-size: $font-15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_ForwardList_entry_detail {
|
|
|
|
font-size: $font-12px;
|
|
|
|
margin-left: 8px;
|
|
|
|
color: $tertiary-content;
|
2021-05-10 19:00:06 +02:00
|
|
|
}
|
2021-05-09 01:48:34 +02:00
|
|
|
}
|
|
|
|
|
2021-05-10 19:00:06 +02:00
|
|
|
.mx_ForwardList_sendButton {
|
2021-05-21 18:41:29 +02:00
|
|
|
position: relative;
|
2021-11-23 10:35:01 +01:00
|
|
|
margin-left: 12px;
|
2021-05-21 18:41:29 +02:00
|
|
|
|
|
|
|
&:not(.mx_ForwardList_canSend) .mx_ForwardList_sendLabel {
|
2022-07-27 15:39:29 +02:00
|
|
|
/* Hide the "Send" label while preserving button size */
|
2021-05-21 18:41:29 +02:00
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_ForwardList_sendIcon, .mx_NotificationBadge {
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_NotificationBadge {
|
2022-07-27 15:39:29 +02:00
|
|
|
/* Match the failed to send indicator's color with the disabled button */
|
2021-06-01 23:56:46 +02:00
|
|
|
background-color: $button-danger-disabled-fg-color;
|
2021-05-09 01:48:34 +02:00
|
|
|
}
|
|
|
|
|
2021-05-21 18:41:29 +02:00
|
|
|
&.mx_ForwardList_sending .mx_ForwardList_sendIcon {
|
2021-11-11 14:37:29 +01:00
|
|
|
background-color: $accent;
|
2021-05-09 01:48:34 +02:00
|
|
|
mask-image: url('$(res)/img/element-icons/circle-sending.svg');
|
2021-05-21 18:41:29 +02:00
|
|
|
mask-position: center;
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-size: 14px;
|
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
2021-05-09 01:48:34 +02:00
|
|
|
}
|
|
|
|
|
2021-05-21 18:41:29 +02:00
|
|
|
&.mx_ForwardList_sent .mx_ForwardList_sendIcon {
|
2021-11-11 14:37:29 +01:00
|
|
|
background-color: $accent;
|
2021-05-09 01:48:34 +02:00
|
|
|
mask-image: url('$(res)/img/element-icons/circle-sent.svg');
|
2021-05-21 18:41:29 +02:00
|
|
|
mask-position: center;
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-size: 14px;
|
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
2021-05-09 01:48:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|