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;
|
2020-07-13 23:13:29 +02:00
|
|
|
padding: 4px 0;
|
2020-07-16 03:08:24 +02:00
|
|
|
box-sizing: border-box;
|
|
|
|
height: 100%;
|
2020-07-13 23:13:29 +02:00
|
|
|
|
|
|
|
.mx_RoomView_MessageList {
|
|
|
|
padding: 14px 18px; // top and bottom is 4px smaller to balance with the padding set above
|
|
|
|
}
|
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;
|
|
|
|
background-color: $primary-bg-color;
|
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;
|
2020-07-16 15:38:46 +02:00
|
|
|
top: 4px; // center with parent of 32px
|
|
|
|
left: 4px; // center with parent of 32px
|
|
|
|
height: 24px;
|
|
|
|
width: 24px;
|
2019-11-01 15:46:30 +01:00
|
|
|
background-color: $rightpanel-button-color;
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-size: contain;
|
|
|
|
}
|
2019-02-12 18:31:47 +01:00
|
|
|
}
|
|
|
|
|
2019-02-13 12:31:30 +01:00
|
|
|
.mx_RightPanel_membersButton::before {
|
2020-07-03 18:03:47 +02:00
|
|
|
mask-image: url('$(res)/img/element-icons/room/members.svg');
|
2020-06-04 00:16:27 +02:00
|
|
|
mask-position: center;
|
2019-02-12 18:31:47 +01:00
|
|
|
}
|
|
|
|
|
2019-02-13 12:31:30 +01:00
|
|
|
.mx_RightPanel_filesButton::before {
|
2020-07-03 18:03:47 +02:00
|
|
|
mask-image: url('$(res)/img/element-icons/room/files.svg');
|
2020-06-04 00:16:27 +02:00
|
|
|
mask-position: center;
|
2019-02-12 18:31:47 +01:00
|
|
|
}
|
|
|
|
|
2019-02-13 12:31:30 +01:00
|
|
|
.mx_RightPanel_notifsButton::before {
|
2020-07-03 18:03:47 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2019-02-13 12:31:30 +01:00
|
|
|
.mx_RightPanel_groupMembersButton::before {
|
2020-07-06 18:28:54 +02:00
|
|
|
mask-image: url('$(res)/img/element-icons/community-members.svg');
|
2020-06-04 00:16:27 +02:00
|
|
|
mask-position: center;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
2019-02-13 12:31:30 +01:00
|
|
|
.mx_RightPanel_roomsButton::before {
|
2020-07-06 18:28:54 +02:00
|
|
|
mask-image: url('$(res)/img/element-icons/community-rooms.svg');
|
2020-06-04 00:16:27 +02:00
|
|
|
mask-position: center;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
2020-07-14 21:09:18 +02:00
|
|
|
.mx_RightPanel_headerButton_highlight {
|
|
|
|
background: rgba($accent-color, 0.25);
|
|
|
|
// make the icon the accent color too
|
|
|
|
&::before {
|
|
|
|
background-color: $accent-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RightPanel_headerButton:not(.mx_RightPanel_headerButton_highlight) {
|
|
|
|
&:hover {
|
|
|
|
background: rgba($accent-color, 0.1);
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
background-color: $accent-color;
|
|
|
|
}
|
|
|
|
}
|
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;
|
|
|
|
background-color: $accent-color;
|
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 .mx_GroupRoomList,
|
|
|
|
.mx_RightPanel_blank {
|
|
|
|
order: 2;
|
|
|
|
flex: 1 1 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RightPanel .mx_RoomView_messagePanelSpinner {
|
|
|
|
order: 2;
|
|
|
|
margin: auto;
|
|
|
|
}
|