You've already forked matrix-react-sdk
							
							
				mirror of
				https://github.com/matrix-org/matrix-react-sdk.git
				synced 2025-11-03 00:33:22 +03:00 
			
		
		
		
	* $accent-color -> $accent Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com> * Remove $accent-bg-color Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com> * $notice-primary-color -> $alert Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com> * Remove $notice-primary-bg-color Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com> * Remove $accent-50pct Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com> * $warning-color -> $alert Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com> * Remove $accent-darker Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com> * Remove $orange-warning-color Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com> * Remove $warning-bg-color Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com> * Remove $info-bg-color Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
		
			
				
	
	
		
			87 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			87 lines
		
	
	
		
			2.3 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.
 | 
						|
*/
 | 
						|
 | 
						|
.mx_SpaceBasicSettings {
 | 
						|
    .mx_Field {
 | 
						|
        margin: 24px 0;
 | 
						|
    }
 | 
						|
 | 
						|
    .mx_SpaceBasicSettings_avatarContainer {
 | 
						|
        display: flex;
 | 
						|
        margin-top: 24px;
 | 
						|
 | 
						|
        .mx_SpaceBasicSettings_avatar {
 | 
						|
            position: relative;
 | 
						|
            height: 80px;
 | 
						|
            width: 80px;
 | 
						|
            background-color: $tertiary-content;
 | 
						|
            border-radius: 16px;
 | 
						|
        }
 | 
						|
 | 
						|
        img.mx_SpaceBasicSettings_avatar {
 | 
						|
            width: 80px;
 | 
						|
            height: 80px;
 | 
						|
            object-fit: cover;
 | 
						|
            border-radius: 16px;
 | 
						|
        }
 | 
						|
 | 
						|
        // only show it when the button is a div and not an img (has avatar)
 | 
						|
        div.mx_SpaceBasicSettings_avatar {
 | 
						|
            cursor: pointer;
 | 
						|
 | 
						|
            &::before {
 | 
						|
                content: "";
 | 
						|
                position: absolute;
 | 
						|
                height: 80px;
 | 
						|
                width: 80px;
 | 
						|
                top: 0;
 | 
						|
                left: 0;
 | 
						|
                background-color: #ffffff; // white icon fill
 | 
						|
                mask-repeat: no-repeat;
 | 
						|
                mask-position: center;
 | 
						|
                mask-size: 20px;
 | 
						|
                mask-image: url('$(res)/img/element-icons/camera.svg');
 | 
						|
            }
 | 
						|
        }
 | 
						|
 | 
						|
        > input[type="file"] {
 | 
						|
            display: none;
 | 
						|
        }
 | 
						|
 | 
						|
        > .mx_AccessibleButton_kind_link {
 | 
						|
            display: inline-block;
 | 
						|
            padding: 0;
 | 
						|
            margin: auto 16px;
 | 
						|
            color: #368bd6;
 | 
						|
        }
 | 
						|
 | 
						|
        > .mx_SpaceBasicSettings_avatar_remove {
 | 
						|
            color: $alert;
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    .mx_AccessibleButton_hasKind {
 | 
						|
        padding: 8px 22px;
 | 
						|
        margin-left: auto;
 | 
						|
        display: block;
 | 
						|
        width: min-content;
 | 
						|
    }
 | 
						|
 | 
						|
    .mx_AccessibleButton_disabled {
 | 
						|
        cursor: not-allowed;
 | 
						|
    }
 | 
						|
}
 |