2023-01-03 16:58:38 +00:00
|
|
|
/*
|
2024-09-06 10:22:13 +02:00
|
|
|
Copyright 2022-2024 New Vector Ltd.
|
2023-01-03 16:58:38 +00:00
|
|
|
|
2025-02-18 17:59:58 +00:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
2024-09-06 10:22:13 +02:00
|
|
|
Please see LICENSE in the repository root for full details.
|
2023-01-03 16:58:38 +00:00
|
|
|
*/
|
|
|
|
|
|
2022-02-18 16:02:27 -08:00
|
|
|
.avatarInputField {
|
|
|
|
|
position: relative;
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-28 08:44:39 -04:00
|
|
|
.avatar {
|
|
|
|
|
display: block;
|
2022-02-18 16:02:27 -08:00
|
|
|
}
|
|
|
|
|
|
2024-08-28 08:44:39 -04:00
|
|
|
.fileInput {
|
|
|
|
|
display: none;
|
2022-02-18 16:02:27 -08:00
|
|
|
}
|
|
|
|
|
|
2024-08-28 08:44:39 -04:00
|
|
|
.edit {
|
|
|
|
|
border-radius: var(--cpd-radius-pill-effect);
|
|
|
|
|
padding: 2px;
|
|
|
|
|
background: var(--cpd-color-bg-canvas-default);
|
2022-02-18 16:02:27 -08:00
|
|
|
position: absolute;
|
2024-08-28 08:44:39 -04:00
|
|
|
inset-block-end: -2px;
|
|
|
|
|
inset-inline-end: -2px;
|
2022-02-18 16:02:27 -08:00
|
|
|
}
|
|
|
|
|
|
2024-08-28 08:44:39 -04:00
|
|
|
.edit button {
|
|
|
|
|
min-block-size: 0;
|
|
|
|
|
block-size: var(--cpd-space-7x);
|
|
|
|
|
inline-size: var(--cpd-space-7x);
|
|
|
|
|
padding: var(--cpd-space-1x);
|
2022-02-18 16:02:27 -08:00
|
|
|
}
|