2018-04-12 01:23:35 +02:00
|
|
|
/*
|
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2020-01-31 16:28:58 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_RightPanel {
|
2018-10-11 15:42:45 +02:00
|
|
|
overflow-x: hidden;
|
|
|
|
flex: 0 0 auto;
|
2018-04-12 01:23:35 +02:00
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2020-07-13 22:52:31 +02:00
|
|
|
border-radius: 8px;
|
2021-11-16 15:43:18 +01:00
|
|
|
padding: $container-border-width 0;
|
2020-07-16 03:08:24 +02:00
|
|
|
box-sizing: border-box;
|
|
|
|
height: 100%;
|
2021-06-01 12:21:59 +02:00
|
|
|
contain: strict;
|
2020-07-13 23:13:29 +02:00
|
|
|
|
|
|
|
.mx_RoomView_MessageList {
|
2022-07-27 15:39:29 +02:00
|
|
|
padding: 14px 18px; /* top and bottom is 4px smaller to balance with the padding set above */
|
2020-07-13 23:13:29 +02:00
|
|
|
}
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RightPanel_header {
|
|
|
|
order: 1;
|
|
|
|
border-bottom: 1px solid $primary-hairline-color;
|
2018-10-23 21:38:04 +02:00
|
|
|
flex: 0 0 52px;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Fixme - factor this out with the main header **/
|
|
|
|
|
|
|
|
.mx_RightPanel_headerButtonGroup {
|
2018-10-24 13:50:58 +02:00
|
|
|
height: 100%;
|
2018-04-12 01:23:35 +02:00
|
|
|
display: flex;
|
2021-08-12 11:10:47 +02:00
|
|
|
background-color: $background;
|
2018-10-23 21:38:04 +02:00
|
|
|
padding: 0 9px;
|
|
|
|
align-items: center;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RightPanel_headerButton {
|
|
|
|
cursor: pointer;
|
|
|
|
flex: 0 0 auto;
|
2020-07-14 21:09:18 +02:00
|
|
|
margin-left: 1px;
|
|
|
|
margin-right: 1px;
|
|
|
|
height: 32px;
|
|
|
|
width: 32px;
|
2019-02-13 12:31:30 +01:00
|
|
|
position: relative;
|
2020-07-14 21:09:18 +02:00
|
|
|
border-radius: 100%;
|
2019-02-13 12:31:30 +01:00
|
|
|
|
2019-11-01 15:46:30 +01:00
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
2022-07-27 15:39:29 +02:00
|
|
|
top: 4px; /* center with parent of 32px */
|
|
|
|
left: 4px; /* center with parent of 32px */
|
2020-07-16 15:38:46 +02:00
|
|
|
height: 24px;
|
|
|
|
width: 24px;
|
2020-07-28 14:19:11 +02:00
|
|
|
background-color: $icon-button-color;
|
2019-11-01 15:46:30 +01:00
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-size: contain;
|
|
|
|
}
|
2020-09-08 16:39:58 +02:00
|
|
|
|
|
|
|
&:hover {
|
2021-11-11 14:37:29 +01:00
|
|
|
background: rgba($accent, 0.1);
|
2020-09-08 16:39:58 +02:00
|
|
|
|
|
|
|
&::before {
|
2021-11-11 14:37:29 +01:00
|
|
|
background-color: $accent;
|
2020-09-08 16:39:58 +02:00
|
|
|
}
|
|
|
|
}
|
2019-02-12 18:31:47 +01:00
|
|
|
}
|
|
|
|
|
2021-10-14 15:27:35 +02:00
|
|
|
.mx_RightPanel_threadsButton::before {
|
|
|
|
mask-image: url('$(res)/img/element-icons/room/thread.svg');
|
|
|
|
}
|
|
|
|
|
2020-09-08 11:19:51 +02:00
|
|
|
.mx_RightPanel_notifsButton::before {
|
|
|
|
mask-image: url('$(res)/img/element-icons/notifications.svg');
|
2020-06-04 00:16:27 +02:00
|
|
|
mask-position: center;
|
2019-02-12 18:31:47 +01:00
|
|
|
}
|
|
|
|
|
2020-09-08 11:19:51 +02:00
|
|
|
.mx_RightPanel_roomSummaryButton::before {
|
|
|
|
mask-image: url('$(res)/img/element-icons/room/room-summary.svg');
|
2020-06-04 00:16:27 +02:00
|
|
|
mask-position: center;
|
2019-02-12 18:31:47 +01:00
|
|
|
}
|
|
|
|
|
2022-04-04 13:36:54 +02:00
|
|
|
$dot-size: 8px;
|
|
|
|
$dot-offset: -3px;
|
2021-11-11 14:37:29 +01:00
|
|
|
$pulse-color: $alert;
|
2021-05-25 17:10:44 +02:00
|
|
|
|
|
|
|
.mx_RightPanel_pinnedMessagesButton {
|
|
|
|
&::before {
|
|
|
|
mask-image: url('$(res)/img/element-icons/room/pin.svg');
|
|
|
|
mask-position: center;
|
|
|
|
}
|
2021-11-30 11:06:20 +01:00
|
|
|
}
|
2022-04-05 18:15:31 +02:00
|
|
|
|
2021-11-30 11:06:20 +01:00
|
|
|
.mx_RightPanel_headerButton_unreadIndicator_bg {
|
|
|
|
position: absolute;
|
2022-04-04 13:36:54 +02:00
|
|
|
right: $dot-offset;
|
|
|
|
top: $dot-offset;
|
2021-11-30 11:06:20 +01:00
|
|
|
margin: 4px;
|
|
|
|
width: $dot-size;
|
|
|
|
height: $dot-size;
|
|
|
|
border-radius: 50%;
|
|
|
|
transform: scale(1.6);
|
|
|
|
transform-origin: center center;
|
|
|
|
background: rgba($background, 1);
|
|
|
|
}
|
2021-05-25 17:10:44 +02:00
|
|
|
|
2021-11-30 11:06:20 +01:00
|
|
|
.mx_RightPanel_headerButton_unreadIndicator {
|
|
|
|
position: absolute;
|
2022-04-04 13:36:54 +02:00
|
|
|
right: $dot-offset;
|
|
|
|
top: $dot-offset;
|
2021-11-30 11:06:20 +01:00
|
|
|
margin: 4px;
|
|
|
|
|
2022-02-08 20:03:15 +01:00
|
|
|
&.mx_Indicator_red {
|
|
|
|
background: rgba($alert, 1);
|
|
|
|
box-shadow: rgba($alert, 1);
|
|
|
|
}
|
|
|
|
|
2021-11-30 11:06:20 +01:00
|
|
|
&.mx_Indicator_gray {
|
2022-04-04 13:36:54 +02:00
|
|
|
background: rgba($room-icon-unread-color, 1);
|
|
|
|
box-shadow: rgba($room-icon-unread-color, 1);
|
2022-02-08 18:37:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&.mx_Indicator_bold {
|
2022-04-04 13:36:54 +02:00
|
|
|
background: rgba($primary-content, 1);
|
|
|
|
box-shadow: rgba($primary-content, 1);
|
2021-11-30 11:06:20 +01:00
|
|
|
}
|
2021-05-25 17:10:44 +02:00
|
|
|
}
|
|
|
|
|
2021-11-29 17:06:15 +01:00
|
|
|
.mx_RightPanel_timelineCardButton {
|
|
|
|
&::before {
|
|
|
|
mask-image: url('$(res)/img/element-icons/feedback.svg');
|
|
|
|
mask-position: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-25 17:10:44 +02:00
|
|
|
@keyframes mx_RightPanel_indicator_pulse {
|
|
|
|
0% {
|
|
|
|
transform: scale(0.95);
|
|
|
|
}
|
|
|
|
|
|
|
|
70% {
|
|
|
|
transform: scale(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
transform: scale(0.95);
|
2021-07-02 16:23:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes mx_RightPanel_indicator_pulse_shadow {
|
|
|
|
0% {
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
|
|
|
|
70% {
|
|
|
|
transform: scale(2.2);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
opacity: 0;
|
2021-05-25 17:10:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-04 13:36:54 +02:00
|
|
|
.mx_RightPanel_headerButton_unread {
|
|
|
|
&::before {
|
|
|
|
background-color: $room-icon-unread-color !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RightPanel_headerButton_highlight,
|
|
|
|
.mx_RightPanel_headerButton:hover {
|
2020-09-01 15:32:21 +02:00
|
|
|
&::before {
|
2021-11-11 14:37:29 +01:00
|
|
|
background-color: $accent !important;
|
2020-09-01 15:32:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-12 01:23:35 +02:00
|
|
|
.mx_RightPanel_headerButton_badge {
|
2020-03-31 16:26:23 +02:00
|
|
|
font-size: $font-8px;
|
2018-10-23 21:38:04 +02:00
|
|
|
border-radius: 8px;
|
|
|
|
color: $accent-fg-color;
|
2021-11-11 14:37:29 +01:00
|
|
|
background-color: $accent;
|
2018-04-12 01:23:35 +02:00
|
|
|
font-weight: bold;
|
2018-10-23 21:38:04 +02:00
|
|
|
position: absolute;
|
|
|
|
top: -4px;
|
|
|
|
left: 20px;
|
|
|
|
padding: 2px 4px;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RightPanel_collapsebutton {
|
|
|
|
flex: 1;
|
|
|
|
text-align: right;
|
2018-10-24 13:50:58 +02:00
|
|
|
height: 16px;
|
|
|
|
border: none;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RightPanel .mx_MemberList,
|
|
|
|
.mx_RightPanel .mx_MemberInfo,
|
|
|
|
.mx_RightPanel_blank {
|
|
|
|
order: 2;
|
|
|
|
flex: 1 1 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RightPanel .mx_RoomView_messagePanelSpinner {
|
|
|
|
order: 2;
|
|
|
|
margin: auto;
|
|
|
|
}
|
2020-07-31 18:31:22 +02:00
|
|
|
|
|
|
|
.mx_RightPanel_empty {
|
2020-09-08 11:19:51 +02:00
|
|
|
margin-right: -28px;
|
2020-07-31 18:31:22 +02:00
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-weight: 700;
|
|
|
|
margin: 16px 0;
|
|
|
|
}
|
|
|
|
|
2022-04-05 18:15:31 +02:00
|
|
|
h2,
|
|
|
|
p {
|
2020-07-31 18:31:22 +02:00
|
|
|
font-size: $font-14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
display: block;
|
|
|
|
margin: 11px auto 29px auto;
|
|
|
|
height: 42px;
|
|
|
|
width: 42px;
|
2021-11-16 11:10:44 +01:00
|
|
|
background-color: $header-panel-text-primary-color;
|
2020-07-31 18:31:22 +02:00
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-size: contain;
|
|
|
|
mask-position: center;
|
|
|
|
}
|
|
|
|
}
|
2021-03-02 10:51:11 +01:00
|
|
|
|
|
|
|
.mx_RightPanel_scopeHeader {
|
|
|
|
margin: 24px;
|
|
|
|
text-align: center;
|
|
|
|
font-weight: $font-semi-bold;
|
|
|
|
font-size: $font-18px;
|
|
|
|
line-height: $font-22px;
|
|
|
|
|
|
|
|
.mx_BaseAvatar {
|
|
|
|
margin-right: 8px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_BaseAvatar_image {
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
|
|
|
}
|