129 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			SCSS
		
	
	
			
		
		
	
	
			129 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			SCSS
		
	
	
/*
 | 
						|
Copyright 2019 New Vector Ltd
 | 
						|
 | 
						|
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_ProfileSettings_profile {
 | 
						|
    display: flex;
 | 
						|
}
 | 
						|
 | 
						|
.mx_ProfileSettings_controls {
 | 
						|
    flex-grow: 1;
 | 
						|
}
 | 
						|
 | 
						|
.mx_ProfileSettings_controls .mx_Field #profileTopic {
 | 
						|
    height: 4em;
 | 
						|
}
 | 
						|
 | 
						|
.mx_ProfileSettings_controls .mx_Field:first-child {
 | 
						|
    margin-top: 0;
 | 
						|
}
 | 
						|
 | 
						|
.mx_ProfileSettings_hostingSignup {
 | 
						|
    margin-left: 20px;
 | 
						|
 | 
						|
    img {
 | 
						|
        margin-left: 5px;
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
.mx_ProfileSettings_avatar {
 | 
						|
    width: 88px;
 | 
						|
    height: 88px;
 | 
						|
    margin-left: 13px;
 | 
						|
    position: relative;
 | 
						|
}
 | 
						|
 | 
						|
.mx_ProfileSettings_avatar > * {
 | 
						|
    display: block;
 | 
						|
    width: 88px;
 | 
						|
    height: 88px;
 | 
						|
    border-radius: 4px;
 | 
						|
}
 | 
						|
 | 
						|
.mx_ProfileSettings_avatar .mx_ProfileSettings_avatarOverlay_disabled {
 | 
						|
    cursor: default;
 | 
						|
}
 | 
						|
 | 
						|
.mx_ProfileSettings_avatar .mx_ProfileSettings_avatarPlaceholder {
 | 
						|
    background-color: $settings-profile-placeholder-bg-color;
 | 
						|
}
 | 
						|
 | 
						|
.mx_ProfileSettings_avatarOverlay {
 | 
						|
    position: absolute;
 | 
						|
    top: 0;
 | 
						|
    bottom: 0;
 | 
						|
    left: 0;
 | 
						|
    right: 0;
 | 
						|
    display: none;
 | 
						|
    text-align: center;
 | 
						|
    vertical-align: middle;
 | 
						|
    font-size: 10px;
 | 
						|
    cursor: pointer;
 | 
						|
}
 | 
						|
 | 
						|
.mx_ProfileSettings_avatar:hover .mx_ProfileSettings_avatarOverlay:not(.mx_ProfileSettings_avatarOverlay_disabled) {
 | 
						|
    display: inline-block;
 | 
						|
    opacity: 0.5 !important;
 | 
						|
    color: $settings-profile-overlay-fg-color !important;
 | 
						|
    background-color: $settings-profile-overlay-bg-color !important;
 | 
						|
}
 | 
						|
 | 
						|
.mx_ProfileSettings_avatarOverlay_show {
 | 
						|
    display: inline-block;
 | 
						|
    opacity: 1;
 | 
						|
    color: $settings-profile-overlay-placeholder-fg-color;
 | 
						|
    background-color: $settings-profile-overlay-placeholder-bg-color;
 | 
						|
}
 | 
						|
 | 
						|
.mx_ProfileSettings_avatarOverlayText {
 | 
						|
    display: block;
 | 
						|
    margin-top: 17px;
 | 
						|
    margin-bottom: 8px;
 | 
						|
}
 | 
						|
 | 
						|
.mx_ProfileSettings_noAvatarText {
 | 
						|
    display: block;
 | 
						|
    margin: 34px auto auto;
 | 
						|
}
 | 
						|
 | 
						|
.mx_ProfileSettings_avatarOverlayImgContainer {
 | 
						|
    position: relative;
 | 
						|
    width: 14px;
 | 
						|
    height: 14px;
 | 
						|
    margin: auto;
 | 
						|
}
 | 
						|
 | 
						|
.mx_ProfileSettings_avatarOverlayImg::before {
 | 
						|
    background-color: $settings-profile-overlay-placeholder-fg-color;
 | 
						|
    mask: url("$(res)/img/feather-customised/upload.svg");
 | 
						|
    mask-repeat: no-repeat;
 | 
						|
    mask-size: 14px;
 | 
						|
    mask-position: center;
 | 
						|
    content: '';
 | 
						|
    position: absolute;
 | 
						|
    top: 0;
 | 
						|
    bottom: 0;
 | 
						|
    left: 0;
 | 
						|
    right: 0;
 | 
						|
}
 | 
						|
 | 
						|
.mx_ProfileSettings_avatar:hover .mx_ProfileSettings_avatarOverlayImg::before {
 | 
						|
    background-color: $settings-profile-overlay-fg-color !important;
 | 
						|
}
 | 
						|
 | 
						|
.mx_ProfileSettings_avatarUpload {
 | 
						|
    display: none;
 | 
						|
}
 |