2024-05-23 09:42:14 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2024 John Livingston <https://www.john-livingston.fr/>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2024-05-06 10:29:25 +00:00
|
|
|
.conversejs {
|
|
|
|
livechat-converse-muc-task-lists {
|
|
|
|
padding: 1em;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
livechat-converse-muc-task-list {
|
|
|
|
width: 100%;
|
|
|
|
|
2024-05-06 15:26:20 +00:00
|
|
|
.task-list-line {
|
2024-05-06 10:29:25 +00:00
|
|
|
border: 1px solid var(--chatroom-head-bg-color);
|
2024-05-07 07:16:16 +00:00
|
|
|
border-radius: 4px;
|
2024-05-06 10:29:25 +00:00
|
|
|
display: flex;
|
|
|
|
flex-flow: row nowrap;
|
|
|
|
justify-content: space-around;
|
|
|
|
padding: 0.25em;
|
|
|
|
column-gap: 0.25em;
|
|
|
|
width: 100%;
|
|
|
|
|
2024-05-06 13:57:42 +00:00
|
|
|
.task-list-toggle-tasks,
|
|
|
|
.task-list-action {
|
2024-06-19 10:49:35 +00:00
|
|
|
background: unset;
|
2024-05-06 10:29:25 +00:00
|
|
|
border: 0;
|
2024-05-06 13:57:42 +00:00
|
|
|
padding-left: 0.25em;
|
|
|
|
padding-right: 0.25em;
|
2024-05-06 10:29:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.task-list-name {
|
|
|
|
flex-grow: 2;
|
2024-05-06 13:57:42 +00:00
|
|
|
|
|
|
|
form {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row nowrap;
|
|
|
|
column-gap: 0.25em;
|
|
|
|
|
|
|
|
input[type="text"] {
|
|
|
|
flex-grow: 2;
|
|
|
|
}
|
|
|
|
}
|
2024-05-06 10:29:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.task-list-tasks {
|
|
|
|
padding-left: 2em;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2024-05-06 13:57:42 +00:00
|
|
|
|
|
|
|
.task-list-add-task {
|
|
|
|
padding: 0.25em 0.25em 0.25em 2em;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2024-05-06 10:29:25 +00:00
|
|
|
}
|
|
|
|
}
|