Task lists WIP:

* front-end
This commit is contained in:
John Livingston
2024-05-06 17:26:20 +02:00
parent 964b8854f6
commit 1e876e60ee
10 changed files with 194 additions and 31 deletions

View File

@ -7,7 +7,7 @@
livechat-converse-muc-task-list {
width: 100%;
.task-list-description {
.task-list-line {
border: 1px solid var(--chatroom-head-bg-color);
display: flex;
flex-flow: row nowrap;

View File

@ -0,0 +1,31 @@
.conversejs {
livechat-converse-muc-task {
padding: 0;
width: 100%;
.task-line {
border: 1px solid var(--chatroom-head-bg-color);
display: flex;
flex-flow: row nowrap;
justify-content: space-around;
padding: 0.25em;
column-gap: 0.25em;
width: 100%;
.task-description {
flex-grow: 2;
white-space: pre-wrap;
}
.task-action {
border: 0;
padding-left: 0.25em;
padding-right: 0.25em;
}
form {
width: 100%;
}
}
}
}