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

46 lines
857 B
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
*/
2024-05-06 15:26:20 +00:00
.conversejs {
livechat-converse-muc-task {
padding: 0;
width: 100%;
.task-line {
border: 1px solid var(--chatroom-head-bg-color);
2024-05-07 07:16:16 +00:00
border-radius: 4px;
2024-05-06 15:26:20 +00:00
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%;
}
&[task-is-done] {
.task-name,
.task-description {
text-decoration-line: line-through;
}
}
2024-05-06 15:26:20 +00:00
}
}
}