0d0771e684
* task drag and drop (buggy version)
48 lines
894 B
SCSS
48 lines
894 B
SCSS
.conversejs {
|
|
livechat-converse-muc-task {
|
|
padding: 0;
|
|
width: 100%;
|
|
|
|
.task-line {
|
|
border: 1px solid var(--chatroom-head-bg-color);
|
|
border-radius: 4px;
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.livechat-drag-bottom-half .task-line {
|
|
border-bottom: 4px solid blue;
|
|
}
|
|
|
|
&.livechat-drag-top-half .task-line {
|
|
border-top: 4px solid blue;
|
|
}
|
|
}
|
|
}
|