* style: move compound loading order * fix: spotlight fiting * fix: don't use internal compound css var in settings subsection * fix: don't use internaal compound css var in read receipt group * fix: add important to font settings on body element * fix: remove play pause button color and fix padding This color wasn't apply because this PR. Removing to avoid visual regression * fix: add important to form help message override in preference settings * fix: override compound in space panel buttons * fix: layout of forgot password * fix: height of encryption tab * fix: widget avatar border radius
53 lines
1.2 KiB
Plaintext
53 lines
1.2 KiB
Plaintext
/*
|
|
* Copyright 2024 New Vector Ltd.
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
|
* Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
.mx_EncryptionDetails,
|
|
.mx_OtherSettings {
|
|
display: flex;
|
|
flex-direction: column;
|
|
/* !important override compound form */
|
|
gap: var(--cpd-space-6x) !important;
|
|
width: 100%;
|
|
align-items: start;
|
|
|
|
.mx_EncryptionDetails_session_title,
|
|
.mx_OtherSettings_title {
|
|
font: var(--cpd-font-body-lg-semibold);
|
|
padding-bottom: var(--cpd-space-2x);
|
|
border-bottom: 1px solid var(--cpd-color-gray-400);
|
|
width: 100%;
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
.mx_EncryptionDetails {
|
|
.mx_EncryptionDetails_session {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--cpd-space-4x);
|
|
width: 100%;
|
|
|
|
> div {
|
|
display: flex;
|
|
|
|
> span {
|
|
width: 50%;
|
|
word-wrap: break-word;
|
|
}
|
|
}
|
|
|
|
> div:nth-child(odd) {
|
|
background-color: var(--cpd-color-gray-200);
|
|
}
|
|
}
|
|
|
|
.mx_EncryptionDetails_buttons {
|
|
display: flex;
|
|
gap: var(--cpd-space-4x);
|
|
}
|
|
}
|