forked from suitenumerique/projects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLabelsStep.module.scss
More file actions
126 lines (107 loc) · 2.31 KB
/
Copy pathLabelsStep.module.scss
File metadata and controls
126 lines (107 loc) · 2.31 KB
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
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
:global(#app) {
.searchContainer {
display: flex;
align-items: center;
gap: 8px;
margin: -12px -12px 12px -12px;
padding: 0 12px;
border-bottom: 1px solid var(--c--contextuals--border--semantic--neutral--tertiary);
input {
width: 100%;
border: none;
outline: none;
font-size: 14px;
height: 50px;
color: var(--c--contextuals--content--semantic--neutral--primary);
&::placeholder {
color: var(--c--contextuals--content--semantic--neutral--tertiary);
}
}
}
.filterList {
display: flex;
flex-direction: column;
margin: 0 -12px;
width: calc(100% + 24px);
max-height: 400px;
overflow-y: auto;
margin-bottom: 12px;
.filterItem {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
cursor: default;
padding-right: 12px;
&:hover {
background-color: var(--c--contextuals--background--semantic--overlay--primary);
.itemActions {
opacity: 1;
}
}
&.draggable {
cursor: grab;
&:active {
cursor: grabbing;
}
}
label {
padding: 0;
margin: 0;
border: none !important;
width: 100%;
background-color: transparent !important;
box-shadow: none !important;
> div {
width: 100%;
padding: 4px 12px;
}
}
}
}
.dragging {
opacity: 0.5;
}
.filterLabel {
display: flex;
align-items: center;
gap: 8px;
width: 100%;
flex: 1;
height: 32px;
.labelIcon {
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
}
.noLabel {
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
border: 1px solid var(--c--contextuals--border--semantic--neutral--primary);
border-radius: 100%;
}
}
.itemActions {
display: flex;
align-items: center;
gap: 4px;
opacity: 0;
> button {
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
padding: 0;
}
}
.addButton {
justify-content: center;
}
}