Task lists WIP:

* task list template + form
This commit is contained in:
John Livingston
2024-05-06 12:29:25 +02:00
parent d16bdd9a87
commit 9d5d59e9bc
7 changed files with 185 additions and 28 deletions

View File

@ -0,0 +1,33 @@
.conversejs {
livechat-converse-muc-task-lists {
padding: 1em;
width: 100%;
}
livechat-converse-muc-task-list {
width: 100%;
.task-list-description {
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%;
button {
border: 0;
}
.task-list-name {
flex-grow: 2;
}
}
.task-list-tasks {
padding-left: 2em;
width: 100%;
}
}
}