blob: 751dc01c3eb8a271f3324f19aeb485f75cc2697b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
table.dates {
width: calc(100% - 4px);
.themen_list > * {
background-color: transparent;
}
tr.ausfall {
transition: opacity var(--transition-duration);
opacity: 0.5;
&:hover {
opacity: 1;
}
}
.nextdate {
background-color: var(--content-color-40);
}
.topic-droppable {
&.active {
background-color: var(--activity-color-40);
}
&.hovered {
background-color: var(--activity-color-80);
}
}
.drag-handle {
background-size: unset;
}
.ui-draggable-dragging {
img.icon-shape-trash {
display: none;
}
}
}
.themen-list {
> .list-placeholder:not(:only-child) {
display: none;
}
}
|