2021-03-01 19:10:17 +01:00
|
|
|
/*
|
|
|
|
Copyright 2021 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
$SpaceRoomViewInnerWidth: 428px;
|
|
|
|
|
2021-03-19 14:16:36 +01:00
|
|
|
@define-mixin SpacePillButton {
|
|
|
|
position: relative;
|
|
|
|
padding: 16px 32px 16px 72px;
|
|
|
|
width: 432px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border-radius: 8px;
|
2021-03-25 13:17:39 +01:00
|
|
|
border: 1px solid $input-border-color;
|
2021-03-19 14:16:36 +01:00
|
|
|
font-size: $font-15px;
|
|
|
|
margin: 20px 0;
|
|
|
|
|
|
|
|
> h3 {
|
|
|
|
font-weight: $font-semi-bold;
|
|
|
|
margin: 0 0 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> span {
|
2021-08-12 11:30:35 +02:00
|
|
|
color: $secondary-content;
|
2021-03-19 14:16:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
position: absolute;
|
|
|
|
content: '';
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
top: 24px;
|
|
|
|
left: 20px;
|
|
|
|
mask-position: center;
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-size: 24px;
|
2021-08-12 11:53:54 +02:00
|
|
|
background-color: $tertiary-content;
|
2021-03-19 14:16:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
2021-11-11 14:37:29 +01:00
|
|
|
border-color: $accent;
|
2021-03-19 14:16:36 +01:00
|
|
|
|
|
|
|
&::before {
|
2021-11-11 14:37:29 +01:00
|
|
|
background-color: $accent;
|
2021-03-19 14:16:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
> span {
|
2021-08-12 11:27:12 +02:00
|
|
|
color: $primary-content;
|
2021-03-19 14:16:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-01 19:10:17 +01:00
|
|
|
.mx_SpaceRoomView {
|
2021-08-21 10:16:26 +02:00
|
|
|
overflow-y: auto;
|
|
|
|
flex: 1;
|
|
|
|
|
2021-03-01 19:10:17 +01:00
|
|
|
.mx_MainSplit > div:first-child {
|
|
|
|
padding: 80px 60px;
|
|
|
|
flex-grow: 1;
|
2021-03-11 12:49:43 +01:00
|
|
|
max-height: 100%;
|
|
|
|
overflow-y: auto;
|
2021-03-01 19:10:17 +01:00
|
|
|
|
|
|
|
h1 {
|
|
|
|
margin: 0;
|
|
|
|
font-size: $font-24px;
|
|
|
|
font-weight: $font-semi-bold;
|
2021-08-12 11:27:12 +02:00
|
|
|
color: $primary-content;
|
2021-03-01 19:10:17 +01:00
|
|
|
width: max-content;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_SpaceRoomView_description {
|
|
|
|
font-size: $font-15px;
|
2021-08-12 11:30:35 +02:00
|
|
|
color: $secondary-content;
|
2021-03-01 19:10:17 +01:00
|
|
|
margin-top: 12px;
|
|
|
|
margin-bottom: 24px;
|
2021-04-28 23:47:08 +02:00
|
|
|
max-width: $SpaceRoomViewInnerWidth;
|
2021-03-01 19:10:17 +01:00
|
|
|
}
|
|
|
|
|
2021-04-26 13:41:04 +02:00
|
|
|
.mx_AddExistingToSpace {
|
|
|
|
max-width: $SpaceRoomViewInnerWidth;
|
|
|
|
|
|
|
|
.mx_AddExistingToSpace_content {
|
|
|
|
height: calc(100vh - 360px);
|
|
|
|
max-height: 400px;
|
|
|
|
}
|
2021-03-01 19:10:17 +01:00
|
|
|
}
|
|
|
|
|
2021-05-11 18:01:31 +02:00
|
|
|
&:not(.mx_SpaceRoomView_landing) .mx_SpaceFeedbackPrompt {
|
|
|
|
width: $SpaceRoomViewInnerWidth;
|
|
|
|
}
|
|
|
|
|
2021-03-01 19:10:17 +01:00
|
|
|
.mx_SpaceRoomView_buttons {
|
|
|
|
display: block;
|
|
|
|
margin-top: 44px;
|
|
|
|
width: $SpaceRoomViewInnerWidth;
|
2022-07-27 15:39:29 +02:00
|
|
|
text-align: right; /* button alignment right */
|
2021-03-01 19:10:17 +01:00
|
|
|
|
2021-03-24 14:15:31 +01:00
|
|
|
.mx_AccessibleButton_hasKind {
|
2021-03-01 19:10:17 +01:00
|
|
|
padding: 8px 22px;
|
|
|
|
margin-left: 16px;
|
|
|
|
}
|
2021-05-11 11:01:40 +02:00
|
|
|
|
|
|
|
input.mx_AccessibleButton {
|
2022-07-27 15:39:29 +02:00
|
|
|
border: none; /* override default styles */
|
2021-05-11 11:01:40 +02:00
|
|
|
}
|
2021-03-01 19:10:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_Field {
|
|
|
|
max-width: $SpaceRoomViewInnerWidth;
|
|
|
|
|
|
|
|
& + .mx_Field {
|
|
|
|
margin-top: 28px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_SpaceRoomView_errorText {
|
|
|
|
font-weight: $font-semi-bold;
|
|
|
|
font-size: $font-12px;
|
|
|
|
line-height: $font-15px;
|
2021-11-11 14:37:29 +01:00
|
|
|
color: $alert;
|
2021-03-01 19:10:17 +01:00
|
|
|
margin-bottom: 28px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_AccessibleButton_disabled {
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-11 12:49:43 +01:00
|
|
|
.mx_SpaceRoomView_landing {
|
2021-07-23 12:27:00 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-08-21 10:16:26 +02:00
|
|
|
min-width: 0;
|
2021-07-23 12:27:00 +02:00
|
|
|
|
2022-03-23 19:23:23 +01:00
|
|
|
.mx_SpaceRoomView_landing_header {
|
2022-03-14 10:11:12 +01:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2022-01-10 12:34:42 +01:00
|
|
|
|
2022-03-14 10:11:12 +01:00
|
|
|
.mx_BaseAvatar {
|
|
|
|
width: 80px;
|
|
|
|
|
2022-03-23 19:23:23 +01:00
|
|
|
.mx_BaseAvatar_image {
|
2022-03-14 10:11:12 +01:00
|
|
|
border-radius: 12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-27 15:39:29 +02:00
|
|
|
/* XXX: Temporary for the Spaces release only */
|
2022-03-14 10:11:12 +01:00
|
|
|
.mx_SpaceFeedbackPrompt {
|
2022-07-27 15:39:29 +02:00
|
|
|
padding: 7px; /* 8px - 1px border */
|
2022-03-14 10:11:12 +01:00
|
|
|
border: 1px solid rgba($primary-content, .1);
|
|
|
|
border-radius: 8px;
|
|
|
|
width: max-content;
|
|
|
|
height: fit-content;
|
|
|
|
margin-left: 24px;
|
|
|
|
}
|
2021-03-01 19:10:17 +01:00
|
|
|
}
|
|
|
|
|
2022-03-23 19:23:23 +01:00
|
|
|
.mx_SpaceRoomView_landing_name {
|
2021-03-01 19:10:17 +01:00
|
|
|
margin: 24px 0 16px;
|
|
|
|
font-size: $font-15px;
|
2021-08-12 11:30:35 +02:00
|
|
|
color: $secondary-content;
|
2021-03-01 19:10:17 +01:00
|
|
|
|
|
|
|
> span {
|
2022-03-23 18:17:25 +01:00
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
|
|
|
gap: 12px 0;
|
2021-03-01 19:10:17 +01:00
|
|
|
|
2022-03-23 18:17:25 +01:00
|
|
|
h1 {
|
2021-03-01 19:10:17 +01:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_SpaceRoomView_landing_inviter {
|
|
|
|
.mx_BaseAvatar {
|
|
|
|
margin-right: 4px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
}
|
2021-03-26 14:11:57 +01:00
|
|
|
}
|
|
|
|
|
2022-03-23 19:23:23 +01:00
|
|
|
.mx_SpaceRoomView_landing_infoBar {
|
2021-03-26 14:11:57 +01:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2022-03-23 18:17:25 +01:00
|
|
|
justify-content: space-between;
|
|
|
|
gap: 12px;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
line-height: $font-24px;
|
2021-03-26 14:11:57 +01:00
|
|
|
|
2022-03-23 18:17:25 +01:00
|
|
|
.mx_SpaceRoomView_landing_infoBar_interactive {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
align-items: center;
|
|
|
|
gap: 12px 12px;
|
2021-05-05 18:25:29 +02:00
|
|
|
|
2022-03-23 18:17:25 +01:00
|
|
|
.mx_FacePile {
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
.mx_FacePile_faces {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-23 22:56:16 +01:00
|
|
|
.mx_SpaceRoomView_landing_inviteButton,
|
|
|
|
.mx_SpaceRoomView_landing_settingsButton {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
position: absolute;
|
|
|
|
content: "";
|
|
|
|
mask-position: center;
|
|
|
|
mask-repeat: no-repeat;
|
2022-03-23 18:17:25 +01:00
|
|
|
}
|
2022-03-23 22:56:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_SpaceRoomView_landing_inviteButton {
|
|
|
|
padding: 4px 18px 4px 40px;
|
|
|
|
height: min-content;
|
2022-03-23 18:17:25 +01:00
|
|
|
|
2022-03-23 22:56:16 +01:00
|
|
|
&::before {
|
|
|
|
left: 8px;
|
|
|
|
height: 16px;
|
|
|
|
width: 16px;
|
2022-07-27 15:39:29 +02:00
|
|
|
background: #fff; /* white icon fill */
|
2022-03-23 22:56:16 +01:00
|
|
|
mask-size: 16px;
|
|
|
|
mask-image: url('$(res)/img/element-icons/room/invite.svg');
|
2022-03-23 18:17:25 +01:00
|
|
|
}
|
2022-03-23 22:56:16 +01:00
|
|
|
}
|
2022-03-23 18:17:25 +01:00
|
|
|
|
2022-03-23 22:56:16 +01:00
|
|
|
.mx_SpaceRoomView_landing_settingsButton {
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
2022-03-23 18:17:25 +01:00
|
|
|
|
2022-03-23 22:56:16 +01:00
|
|
|
&::before {
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
height: 24px;
|
|
|
|
width: 24px;
|
|
|
|
background: $tertiary-content;
|
|
|
|
mask-size: contain;
|
|
|
|
mask-image: url('$(res)/img/element-icons/settings.svg');
|
2022-03-23 18:17:25 +01:00
|
|
|
}
|
2021-05-05 18:25:29 +02:00
|
|
|
}
|
|
|
|
}
|
2021-03-01 19:10:17 +01:00
|
|
|
}
|
|
|
|
|
2022-03-23 19:23:23 +01:00
|
|
|
.mx_SpaceRoomView_landing_topic {
|
2021-03-01 19:10:17 +01:00
|
|
|
font-size: $font-15px;
|
2021-03-26 14:11:57 +01:00
|
|
|
margin-top: 12px;
|
2021-03-26 14:46:01 +01:00
|
|
|
margin-bottom: 16px;
|
2021-06-14 23:18:02 +02:00
|
|
|
white-space: pre-wrap;
|
|
|
|
word-wrap: break-word;
|
2021-03-26 14:46:01 +01:00
|
|
|
}
|
|
|
|
|
2021-03-26 10:44:52 +01:00
|
|
|
.mx_SearchBox {
|
2021-03-26 14:46:01 +01:00
|
|
|
margin: 0 0 20px;
|
2021-07-23 12:27:00 +02:00
|
|
|
flex: 0;
|
2021-03-02 15:37:28 +01:00
|
|
|
}
|
2021-03-01 19:10:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_SpaceRoomView_privateScope {
|
2021-05-11 18:01:31 +02:00
|
|
|
> .mx_AccessibleButton {
|
2021-03-19 14:16:36 +01:00
|
|
|
@mixin SpacePillButton;
|
2021-03-01 19:10:17 +01:00
|
|
|
}
|
|
|
|
|
2022-03-23 19:23:23 +01:00
|
|
|
.mx_SpaceRoomView_privateScope_justMeButton::before {
|
2021-03-01 19:10:17 +01:00
|
|
|
mask-image: url('$(res)/img/element-icons/room/members.svg');
|
|
|
|
}
|
|
|
|
|
2022-03-23 19:23:23 +01:00
|
|
|
.mx_SpaceRoomView_privateScope_meAndMyTeammatesButton::before {
|
2022-03-24 20:51:18 +01:00
|
|
|
mask-image: url('$(res)/img/element-icons/group-members.svg');
|
2021-03-01 19:10:17 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_SpaceRoomView_inviteTeammates {
|
2022-07-27 15:39:29 +02:00
|
|
|
/* XXX remove this when spaces leaves Beta */
|
2022-03-23 19:23:23 +01:00
|
|
|
.mx_SpaceRoomView_inviteTeammates_betaDisclaimer {
|
2021-10-11 11:43:37 +02:00
|
|
|
padding: 16px;
|
2021-04-28 23:47:08 +02:00
|
|
|
position: relative;
|
|
|
|
border-radius: 8px;
|
|
|
|
background-color: $header-panel-bg-color;
|
|
|
|
max-width: $SpaceRoomViewInnerWidth;
|
|
|
|
margin: 20px 0 30px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
|
|
.mx_BetaCard_betaPill {
|
|
|
|
position: absolute;
|
|
|
|
left: 16px;
|
|
|
|
top: 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-23 19:23:23 +01:00
|
|
|
.mx_SpaceRoomView_inviteTeammates_buttons {
|
2021-08-12 11:30:35 +02:00
|
|
|
color: $secondary-content;
|
2021-03-01 19:10:17 +01:00
|
|
|
margin-top: 28px;
|
|
|
|
|
|
|
|
.mx_AccessibleButton {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
padding-left: 32px;
|
2022-07-27 15:39:29 +02:00
|
|
|
line-height: 24px; /* to center icons */
|
2021-03-01 19:10:17 +01:00
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
height: 24px;
|
|
|
|
width: 24px;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2021-08-12 11:30:35 +02:00
|
|
|
background-color: $secondary-content;
|
2021-03-01 19:10:17 +01:00
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-position: center;
|
|
|
|
mask-size: contain;
|
|
|
|
}
|
|
|
|
|
|
|
|
& + .mx_AccessibleButton {
|
|
|
|
margin-left: 32px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-11 11:43:37 +02:00
|
|
|
.mx_SpaceRoomView_inviteTeammates_inviteDialogButton {
|
2021-11-11 14:37:29 +01:00
|
|
|
color: $accent;
|
2021-10-11 11:43:37 +02:00
|
|
|
|
|
|
|
&::before {
|
|
|
|
mask-image: url('$(res)/img/element-icons/room/invite.svg');
|
2021-11-11 14:37:29 +01:00
|
|
|
background-color: $accent;
|
2021-10-11 11:43:37 +02:00
|
|
|
}
|
2021-03-01 19:10:17 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|