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;
|
2020-01-31 16:28:58 +01:00
|
|
|
min-width: 264px;
|
2018-04-12 01:23:35 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
|
|
|
vertical-align: top;
|
2019-02-12 18:31:47 +01:00
|
|
|
margin-left: 5px;
|
|
|
|
margin-right: 5px;
|
2018-04-12 01:23:35 +02:00
|
|
|
text-align: center;
|
2018-10-23 21:38:04 +02:00
|
|
|
border-bottom: 2px solid transparent;
|
2019-02-12 18:31:47 +01:00
|
|
|
height: 20px;
|
|
|
|
width: 20px;
|
2019-02-13 12:31:30 +01:00
|
|
|
position: relative;
|
|
|
|
|
2019-11-01 15:46:30 +01:00
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
height: 20px;
|
|
|
|
width: 20px;
|
|
|
|
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 {
|
2019-02-27 11:42:05 +01:00
|
|
|
mask-image: url('$(res)/img/feather-customised/user.svg');
|
2019-02-12 18:31:47 +01:00
|
|
|
}
|
|
|
|
|
2019-02-13 12:31:30 +01:00
|
|
|
.mx_RightPanel_filesButton::before {
|
2019-02-27 11:42:05 +01:00
|
|
|
mask-image: url('$(res)/img/feather-customised/files.svg');
|
2019-02-12 18:31:47 +01:00
|
|
|
}
|
|
|
|
|
2019-02-13 12:31:30 +01:00
|
|
|
.mx_RightPanel_notifsButton::before {
|
2019-02-27 11:42:05 +01:00
|
|
|
mask-image: url('$(res)/img/feather-customised/notifications.svg');
|
2019-02-12 18:31:47 +01:00
|
|
|
}
|
|
|
|
|
2019-02-13 12:31:30 +01:00
|
|
|
.mx_RightPanel_groupMembersButton::before {
|
2019-02-12 18:31:47 +01:00
|
|
|
mask-image: url('$(res)/img/icons-people.svg');
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
2019-02-13 12:31:30 +01:00
|
|
|
.mx_RightPanel_roomsButton::before {
|
2019-02-12 18:31:47 +01:00
|
|
|
mask-image: url('$(res)/img/icons-room-nobg.svg');
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
2019-02-13 12:31:30 +01:00
|
|
|
.mx_RightPanel_headerButton_highlight::after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
bottom: -6px;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
height: 2px;
|
|
|
|
background-color: $button-bg-color;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RightPanel_headerButton_badge {
|
2018-10-23 21:38:04 +02:00
|
|
|
font-size: 8px;
|
|
|
|
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;
|
|
|
|
}
|