Newer
Older
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
.cdk-drag-preview {
box-sizing: border-box;
border-radius: 4px;
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),
0 8px 10px 1px rgba(0, 0, 0, 0.14),
0 3px 14px 2px rgba(0, 0, 0, 0.12);
background: white;
padding: 10px;
.mat-icon {
display: none;
}
}
.cdk-drag-placeholder {
opacity: 0;
}
.cdk-drag-animating {
transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
}
.columns:last-child {
border: none;
}
.cdk-list.cdk-drop-list-dragging .columns:not(.cdk-drag-placeholder) {
transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
}
.columns {
cursor: move;
}
.notDraggable {
cursor: not-allowed;
}
.notEditable {
cursor: initial;
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
}
.currentContextButton{
overflow: hidden;
text-overflow: ellipsis;
font-size: 13px;
width: 150px;
text-align: left;
}
.currentRoleButton{
overflow: hidden;
text-overflow: ellipsis;
font-size: 13px;
width: 120px;
text-align: center;
}
::ng-deep.listMenu {
.mat-menu-content {
padding-top: 0;
padding-bottom: 0;
}
}
.emptyContent {
opacity: 0.5;
text-align: center;
font-size: 10px;
padding: 10px;
}
.processed {
background: rgba(0, 128, 0, 0.11);