2018-04-12 07:23:35 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2017-2024 New Vector Ltd.
|
2018-04-12 07:23:35 +08:00
|
|
|
|
2024-09-09 21:57:16 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2018-04-12 07:23:35 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_EditableItemList {
|
|
|
|
margin-top: 12px;
|
2019-02-09 00:11:30 +08:00
|
|
|
margin-bottom: 10px;
|
2018-04-12 07:23:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_EditableItem {
|
2020-03-17 00:29:35 +08:00
|
|
|
display: flex;
|
2019-02-09 00:11:30 +08:00
|
|
|
margin-bottom: 5px;
|
2018-04-12 07:23:35 +08:00
|
|
|
}
|
|
|
|
|
2019-02-09 00:11:30 +08:00
|
|
|
.mx_EditableItem_delete {
|
2022-05-08 03:08:00 +08:00
|
|
|
@mixin customisedCancelButton;
|
2020-03-17 00:29:35 +08:00
|
|
|
order: 3;
|
2019-02-09 00:11:30 +08:00
|
|
|
vertical-align: middle;
|
2024-10-28 21:50:29 +08:00
|
|
|
width: 28px;
|
|
|
|
height: 28px;
|
2021-11-11 21:37:29 +08:00
|
|
|
background-color: $alert;
|
2020-03-17 00:29:35 +08:00
|
|
|
mask-size: 100%;
|
2018-04-12 07:23:35 +08:00
|
|
|
}
|
|
|
|
|
2019-02-09 00:11:30 +08:00
|
|
|
.mx_EditableItem_email {
|
|
|
|
vertical-align: middle;
|
2018-04-12 07:23:35 +08:00
|
|
|
}
|
|
|
|
|
2019-02-09 00:11:30 +08:00
|
|
|
.mx_EditableItem_promptText {
|
|
|
|
margin-right: 10px;
|
2020-03-17 00:29:35 +08:00
|
|
|
order: 2;
|
2018-04-12 07:23:35 +08:00
|
|
|
}
|
|
|
|
|
2019-02-09 00:11:30 +08:00
|
|
|
.mx_EditableItem_confirmBtn {
|
|
|
|
margin-right: 5px;
|
2018-04-12 07:23:35 +08:00
|
|
|
}
|
|
|
|
|
2020-03-17 00:29:35 +08:00
|
|
|
.mx_EditableItem_item {
|
|
|
|
flex: auto 1 0;
|
|
|
|
order: 1;
|
2024-10-28 21:50:29 +08:00
|
|
|
width: calc(100% - 28px); /* leave space for the remove button */
|
2020-04-26 19:52:17 +08:00
|
|
|
overflow-x: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2020-03-17 00:29:35 +08:00
|
|
|
}
|
|
|
|
|
2018-04-12 07:23:35 +08:00
|
|
|
.mx_EditableItemList_label {
|
2019-02-09 00:11:30 +08:00
|
|
|
margin-bottom: 5px;
|
2019-06-14 06:48:47 +08:00
|
|
|
}
|