peertube-plugin-livechat/conversejs/custom/plugins/tasks/styles/muc-task-lists.scss

60 lines
1.1 KiB
SCSS
Raw Normal View History

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
*/
.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 {
border: 1px solid var(--chatroom-head-bg-color);
2024-05-07 07:16:16 +00:00
border-radius: 4px;
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 {
background: unset;
border: 0;
2024-05-06 13:57:42 +00:00
padding-left: 0.25em;
padding-right: 0.25em;
}
.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;
}
}
}
}
.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%;
}
}
}