337 lines
		
	
	
		
			9.4 KiB
		
	
	
	
		
			SCSS
		
	
	
			
		
		
	
	
			337 lines
		
	
	
		
			9.4 KiB
		
	
	
	
		
			SCSS
		
	
	
| /*
 | |
| 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;
 | |
| 
 | |
| .mx_SpaceRoomView {
 | |
|     .mx_MainSplit > div:first-child {
 | |
|         padding: 80px 60px;
 | |
|         flex-grow: 1;
 | |
| 
 | |
|         h1 {
 | |
|             margin: 0;
 | |
|             font-size: $font-24px;
 | |
|             font-weight: $font-semi-bold;
 | |
|             color: $primary-fg-color;
 | |
|             width: max-content;
 | |
|         }
 | |
| 
 | |
|         .mx_SpaceRoomView_description {
 | |
|             font-size: $font-15px;
 | |
|             color: $secondary-fg-color;
 | |
|             margin-top: 12px;
 | |
|             margin-bottom: 24px;
 | |
|         }
 | |
| 
 | |
|         .mx_SpaceRoomView_buttons {
 | |
|             display: block;
 | |
|             margin-top: 44px;
 | |
|             width: $SpaceRoomViewInnerWidth;
 | |
|             text-align: right; // button alignment right
 | |
| 
 | |
|             .mx_FormButton {
 | |
|                 padding: 8px 22px;
 | |
|                 margin-left: 16px;
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         .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;
 | |
|             color: $notice-primary-color;
 | |
|             margin-bottom: 28px;
 | |
|         }
 | |
| 
 | |
|         .mx_AccessibleButton_disabled {
 | |
|             cursor: not-allowed;
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     .mx_SpaceRoomView_landing {
 | |
|         overflow-y: auto;
 | |
| 
 | |
|         > .mx_BaseAvatar_image,
 | |
|         > .mx_BaseAvatar > .mx_BaseAvatar_image {
 | |
|             border-radius: 12px;
 | |
|         }
 | |
| 
 | |
|         .mx_SpaceRoomView_landing_name {
 | |
|             margin: 24px 0 16px;
 | |
|             font-size: $font-15px;
 | |
|             color: $secondary-fg-color;
 | |
| 
 | |
|             > span {
 | |
|                 display: inline-block;
 | |
|             }
 | |
| 
 | |
|             .mx_SpaceRoomView_landing_nameRow {
 | |
|                 margin-top: 12px;
 | |
| 
 | |
|                 > h1 {
 | |
|                     display: inline-block;
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|             .mx_SpaceRoomView_landing_inviter {
 | |
|                 .mx_BaseAvatar {
 | |
|                     margin-right: 4px;
 | |
|                     vertical-align: middle;
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|             .mx_SpaceRoomView_landing_memberCount {
 | |
|                 position: relative;
 | |
|                 margin-left: 24px;
 | |
|                 padding: 0 0 0 28px;
 | |
|                 line-height: $font-24px;
 | |
|                 vertical-align: text-bottom;
 | |
| 
 | |
|                 &::before {
 | |
|                     position: absolute;
 | |
|                     content: '';
 | |
|                     width: 24px;
 | |
|                     height: 24px;
 | |
|                     top: 0;
 | |
|                     left: 0;
 | |
|                     mask-position: center;
 | |
|                     mask-repeat: no-repeat;
 | |
|                     mask-size: contain;
 | |
|                     background-color: $accent-color;
 | |
|                     mask-image: url('$(res)/img/element-icons/community-members.svg');
 | |
|                 }
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         .mx_SpaceRoomView_landing_topic {
 | |
|             font-size: $font-15px;
 | |
|         }
 | |
| 
 | |
|         .mx_SpaceRoomView_landing_joinButtons {
 | |
|             margin-top: 24px;
 | |
| 
 | |
|             .mx_FormButton {
 | |
|                 padding: 8px 22px;
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         .mx_SpaceRoomView_landing_adminButtons {
 | |
|             margin-top: 32px;
 | |
| 
 | |
|             .mx_AccessibleButton {
 | |
|                 position: relative;
 | |
|                 width: 160px;
 | |
|                 height: 124px;
 | |
|                 box-sizing: border-box;
 | |
|                 padding: 72px 16px 0;
 | |
|                 border-radius: 12px;
 | |
|                 border: 1px solid $space-button-outline-color;
 | |
|                 margin-right: 28px;
 | |
|                 margin-bottom: 28px;
 | |
|                 font-size: $font-14px;
 | |
|                 display: inline-block;
 | |
|                 vertical-align: bottom;
 | |
| 
 | |
|                 &:last-child {
 | |
|                     margin-right: 0;
 | |
|                 }
 | |
| 
 | |
|                 &:hover {
 | |
|                     background-color: rgba(141, 151, 165, 0.1);
 | |
|                 }
 | |
| 
 | |
|                 &::before, &::after {
 | |
|                     position: absolute;
 | |
|                     content: "";
 | |
|                     left: 16px;
 | |
|                     top: 16px;
 | |
|                     height: 40px;
 | |
|                     width: 40px;
 | |
|                     border-radius: 20px;
 | |
|                 }
 | |
| 
 | |
|                 &::after {
 | |
|                     mask-position: center;
 | |
|                     mask-size: 30px;
 | |
|                     mask-repeat: no-repeat;
 | |
|                     background: #ffffff; // white icon fill
 | |
|                 }
 | |
| 
 | |
|                 &.mx_SpaceRoomView_landing_inviteButton {
 | |
|                     &::before {
 | |
|                         background-color: $accent-color;
 | |
|                     }
 | |
| 
 | |
|                     &::after {
 | |
|                         mask-image: url('$(res)/img/element-icons/room/invite.svg');
 | |
|                     }
 | |
|                 }
 | |
| 
 | |
|                 &.mx_SpaceRoomView_landing_addButton {
 | |
|                     &::before {
 | |
|                         background-color: #ac3ba8;
 | |
|                     }
 | |
| 
 | |
|                     &::after {
 | |
|                         mask-image: url('$(res)/img/element-icons/roomlist/explore.svg');
 | |
|                     }
 | |
|                 }
 | |
| 
 | |
|                 &.mx_SpaceRoomView_landing_createButton {
 | |
|                     &::before {
 | |
|                         background-color: #368bd6;
 | |
|                     }
 | |
| 
 | |
|                     &::after {
 | |
|                         mask-image: url('$(res)/img/element-icons/roomlist/explore.svg');
 | |
|                     }
 | |
|                 }
 | |
| 
 | |
|                 &.mx_SpaceRoomView_landing_settingsButton {
 | |
|                     &::before {
 | |
|                         background-color: #5c56f5;
 | |
|                     }
 | |
| 
 | |
|                     &::after {
 | |
|                         mask-image: url('$(res)/img/element-icons/settings.svg');
 | |
|                     }
 | |
|                 }
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         .mx_SpaceRoomDirectory_list {
 | |
|             max-width: 600px;
 | |
| 
 | |
|             .mx_SpaceRoomDirectory_roomTile_actions {
 | |
|                 display: none;
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     .mx_SpaceRoomView_privateScope {
 | |
|         .mx_RadioButton {
 | |
|             width: $SpaceRoomViewInnerWidth;
 | |
|             border-radius: 8px;
 | |
|             border: 1px solid $space-button-outline-color;
 | |
|             padding: 16px 16px 16px 72px;
 | |
|             margin-top: 36px;
 | |
|             cursor: pointer;
 | |
|             box-sizing: border-box;
 | |
|             position: relative;
 | |
| 
 | |
|             > div:first-of-type {
 | |
|                 // hide radio dot
 | |
|                 display: none;
 | |
|             }
 | |
| 
 | |
|             .mx_RadioButton_content {
 | |
|                 margin: 0;
 | |
| 
 | |
|                 > h3 {
 | |
|                     margin: 0 0 4px;
 | |
|                     font-size: $font-15px;
 | |
|                     font-weight: $font-semi-bold;
 | |
|                     line-height: $font-18px;
 | |
|                 }
 | |
| 
 | |
|                 > div {
 | |
|                     color: $secondary-fg-color;
 | |
|                     font-size: $font-15px;
 | |
|                     line-height: $font-24px;
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|             &::before {
 | |
|                 content: "";
 | |
|                 position: absolute;
 | |
|                 height: 32px;
 | |
|                 width: 32px;
 | |
|                 top: 24px;
 | |
|                 left: 20px;
 | |
|                 background-color: $secondary-fg-color;
 | |
|                 mask-repeat: no-repeat;
 | |
|                 mask-position: center;
 | |
|                 mask-size: contain;
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         .mx_RadioButton_checked {
 | |
|             border-color: $accent-color;
 | |
| 
 | |
|             .mx_RadioButton_content {
 | |
|                 > div {
 | |
|                     color: $primary-fg-color;
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|             &::before {
 | |
|                 background-color: $accent-color;
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         .mx_SpaceRoomView_privateScope_justMeButton::before {
 | |
|             mask-image: url('$(res)/img/element-icons/room/members.svg');
 | |
|         }
 | |
| 
 | |
|         .mx_SpaceRoomView_privateScope_meAndMyTeammatesButton::before {
 | |
|             mask-image: url('$(res)/img/element-icons/community-members.svg');
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     .mx_SpaceRoomView_inviteTeammates {
 | |
|         .mx_SpaceRoomView_inviteTeammates_buttons {
 | |
|             color: $secondary-fg-color;
 | |
|             margin-top: 28px;
 | |
| 
 | |
|             .mx_AccessibleButton {
 | |
|                 position: relative;
 | |
|                 display: inline-block;
 | |
|                 padding-left: 32px;
 | |
|                 line-height: 24px; // to center icons
 | |
| 
 | |
|                 &::before {
 | |
|                     content: "";
 | |
|                     position: absolute;
 | |
|                     height: 24px;
 | |
|                     width: 24px;
 | |
|                     top: 0;
 | |
|                     left: 0;
 | |
|                     background-color: $secondary-fg-color;
 | |
|                     mask-repeat: no-repeat;
 | |
|                     mask-position: center;
 | |
|                     mask-size: contain;
 | |
|                 }
 | |
| 
 | |
|                 & + .mx_AccessibleButton {
 | |
|                     margin-left: 32px;
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|             .mx_SpaceRoomView_inviteTeammates_inviteDialogButton::before {
 | |
|                 mask-image: url('$(res)/img/element-icons/room/invite.svg');
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| }
 |