mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 22:14:58 +08:00
cb779fe872
* Nesting: `mx_GeneralUserSettingsTab_changePassword` * Nesting: `mx_Spinner` * Conform the style rules to the naming policy For elements inside "mx_GeneralUserSettingsTab_accountSection" and "mx_GeneralUserSettingsTab_discovery" * Conform `mx_GeneralUserSettingsTab_discovery_existing*` to the naming policy
72 lines
2.2 KiB
Plaintext
72 lines
2.2 KiB
Plaintext
/*
|
|
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_GeneralUserSettingsTab_section--account_changePassword {
|
|
.mx_Field {
|
|
margin-inline-end: var(--SettingsTab_fullWidthField-margin-inline-end);
|
|
|
|
&:first-child {
|
|
margin-top: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* TODO: Make this selector less painful */
|
|
.mx_GeneralUserSettingsTab_section--account .mx_SettingsTab_subheading:nth-child(n + 1),
|
|
.mx_GeneralUserSettingsTab_section--discovery .mx_SettingsTab_subheading:nth-child(n + 2),
|
|
.mx_SetIdServer .mx_SettingsTab_subheading {
|
|
margin-top: 24px;
|
|
}
|
|
|
|
.mx_GeneralUserSettingsTab_section--account,
|
|
.mx_GeneralUserSettingsTab_section--discovery {
|
|
.mx_Spinner {
|
|
/* Move the spinner to the left side of the container (default center) */
|
|
justify-content: flex-start;
|
|
}
|
|
}
|
|
|
|
.mx_GeneralUserSettingsTab_section--account .mx_EmailAddresses,
|
|
.mx_GeneralUserSettingsTab_section--account .mx_PhoneNumbers,
|
|
.mx_GeneralUserSettingsTab_section--discovery .mx_GeneralUserSettingsTab_section--discovery_existing,
|
|
.mx_GeneralUserSettingsTab_section_languageInput {
|
|
margin-inline-end: var(--SettingsTab_fullWidthField-margin-inline-end);
|
|
}
|
|
|
|
.mx_GeneralUserSettingsTab_section--discovery_existing {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.mx_GeneralUserSettingsTab_section--discovery_existing_address,
|
|
.mx_GeneralUserSettingsTab_section--discovery_existing_promptText {
|
|
flex: 1;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.mx_GeneralUserSettingsTab_section--discovery_existing_button {
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.mx_GeneralUserSettingsTab_section--spellcheck .mx_ToggleSwitch {
|
|
float: right;
|
|
}
|
|
|
|
.mx_GeneralUserSettingsTab_heading_warningIcon {
|
|
vertical-align: middle;
|
|
}
|