@konfuzio/document-validation-ui 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.js +11 -0
- package/.prettierrc.json +1 -0
- package/LICENSE +21 -0
- package/README.md +13 -0
- package/dist/css/app.0c8973f8.css +1 -0
- package/dist/css/chunk-vendors.053b6b6e.css +5 -0
- package/dist/favicon.ico +0 -0
- package/dist/index.html +1 -0
- package/dist/js/app.17fe48c4.js +2 -0
- package/dist/js/app.17fe48c4.js.map +1 -0
- package/dist/js/chunk-vendors.a48fca3f.js +47 -0
- package/dist/js/chunk-vendors.a48fca3f.js.map +1 -0
- package/jest.config.js +4 -0
- package/package.json +60 -0
- package/src/.DS_Store +0 -0
- package/src/api.js +49 -0
- package/src/assets/images/AcceptedCheckMark.vue +8 -0
- package/src/assets/images/AcceptedUser.vue +8 -0
- package/src/assets/images/ActionIcon.vue +60 -0
- package/src/assets/images/ArrowDownKey.vue +11 -0
- package/src/assets/images/ArrowUpKey.vue +11 -0
- package/src/assets/images/CategoryIconImg.vue +13 -0
- package/src/assets/images/CheckMark.vue +8 -0
- package/src/assets/images/EditDocIcon.vue +12 -0
- package/src/assets/images/EmptyStateImg.vue +129 -0
- package/src/assets/images/ErrorIcon.vue +28 -0
- package/src/assets/images/EyeIcon.vue +11 -0
- package/src/assets/images/FileNameNotSavedImage.vue +26 -0
- package/src/assets/images/FileNameSavedImage.vue +14 -0
- package/src/assets/images/FitZoomIcon.vue +16 -0
- package/src/assets/images/KeyboardIcon.vue +16 -0
- package/src/assets/images/MinusIcon.vue +13 -0
- package/src/assets/images/NotOptimizedIllustration.vue +651 -0
- package/src/assets/images/PlusIcon.vue +13 -0
- package/src/assets/images/QuestionMark.vue +12 -0
- package/src/assets/images/ServerImage.vue +63 -0
- package/src/assets/images/SplitLines.vue +18 -0
- package/src/assets/images/SplitZigZag.vue +16 -0
- package/src/assets/images/StatusImg.vue +14 -0
- package/src/assets/images/UserIcon.vue +8 -0
- package/src/assets/scss/annotation_details.scss +126 -0
- package/src/assets/scss/categorize_modal.scss +42 -0
- package/src/assets/scss/choose_label_set_modal.scss +62 -0
- package/src/assets/scss/document_action_bar.scss +37 -0
- package/src/assets/scss/document_annotations.scss +472 -0
- package/src/assets/scss/document_category.scss +80 -0
- package/src/assets/scss/document_dashboard.scss +47 -0
- package/src/assets/scss/document_dataset_status.scss +46 -0
- package/src/assets/scss/document_edit.scss +431 -0
- package/src/assets/scss/document_error.scss +81 -0
- package/src/assets/scss/document_handover.scss +200 -0
- package/src/assets/scss/document_name.scss +62 -0
- package/src/assets/scss/document_page.scss +8 -0
- package/src/assets/scss/document_thumbnails.scss +41 -0
- package/src/assets/scss/document_toolbar.scss +89 -0
- package/src/assets/scss/document_top_bar.scss +139 -0
- package/src/assets/scss/document_viewport_modal.scss +25 -0
- package/src/assets/scss/documents_list.scss +130 -0
- package/src/assets/scss/empty_state.scss +34 -0
- package/src/assets/scss/extracting_data.scss +35 -0
- package/src/assets/scss/imports.scss +1 -0
- package/src/assets/scss/main.scss +24 -0
- package/src/assets/scss/multi_ann_table_popup.scss +12 -0
- package/src/assets/scss/new_annotation.scss +86 -0
- package/src/assets/scss/scrolling_document.scss +19 -0
- package/src/assets/scss/variables.scss +696 -0
- package/src/components/App.vue +112 -0
- package/src/components/DocumentAnnotations/ActionButtons.vue +237 -0
- package/src/components/DocumentAnnotations/AnnotationContent.vue +249 -0
- package/src/components/DocumentAnnotations/AnnotationDetails.vue +292 -0
- package/src/components/DocumentAnnotations/AnnotationRow.vue +616 -0
- package/src/components/DocumentAnnotations/CategorizeModal.vue +159 -0
- package/src/components/DocumentAnnotations/ChooseLabelSetModal.vue +155 -0
- package/src/components/DocumentAnnotations/DocumentAnnotations.vue +502 -0
- package/src/components/DocumentAnnotations/DocumentLabel.vue +148 -0
- package/src/components/DocumentAnnotations/EmptyAnnotation.vue +222 -0
- package/src/components/DocumentAnnotations/EmptyState.vue +21 -0
- package/src/components/DocumentAnnotations/ExtractingData.vue +29 -0
- package/src/components/DocumentAnnotations/LoadingAnnotations.vue +43 -0
- package/src/components/DocumentAnnotations/LoadingLabels.vue +43 -0
- package/src/components/DocumentAnnotations/RejectedLabels.vue +96 -0
- package/src/components/DocumentAnnotations/index.js +8 -0
- package/src/components/DocumentCategory.vue +156 -0
- package/src/components/DocumentDashboard.vue +159 -0
- package/src/components/DocumentEdit/DocumentEdit.vue +279 -0
- package/src/components/DocumentEdit/EditPages.vue +213 -0
- package/src/components/DocumentEdit/EditSidebar.vue +118 -0
- package/src/components/DocumentEdit/SplitOverview.vue +182 -0
- package/src/components/DocumentEdit/index.js +4 -0
- package/src/components/DocumentError.vue +53 -0
- package/src/components/DocumentPage/ActionBar.vue +48 -0
- package/src/components/DocumentPage/BoxSelection.vue +149 -0
- package/src/components/DocumentPage/DocumentPage.vue +517 -0
- package/src/components/DocumentPage/DocumentToolbar.vue +145 -0
- package/src/components/DocumentPage/DummyPage.vue +53 -0
- package/src/components/DocumentPage/MultiAnnSelection.vue +302 -0
- package/src/components/DocumentPage/MultiAnnotationTablePopup.vue +253 -0
- package/src/components/DocumentPage/NewAnnotation.vue +283 -0
- package/src/components/DocumentPage/ScrollingDocument.vue +108 -0
- package/src/components/DocumentPage/ScrollingPage.vue +184 -0
- package/src/components/DocumentPage/index.js +5 -0
- package/src/components/DocumentThumbnails/DocumentThumbnails.vue +92 -0
- package/src/components/DocumentThumbnails/LoadingThumbnail.vue +25 -0
- package/src/components/DocumentThumbnails/index.js +1 -0
- package/src/components/DocumentTopBar/DocumentDatasetStatus.vue +103 -0
- package/src/components/DocumentTopBar/DocumentHandover.vue +202 -0
- package/src/components/DocumentTopBar/DocumentName.vue +224 -0
- package/src/components/DocumentTopBar/DocumentTopBar.vue +144 -0
- package/src/components/DocumentTopBar/DocumentTopBarButtons.vue +148 -0
- package/src/components/DocumentTopBar/KeyboardActionsDescription.vue +71 -0
- package/src/components/DocumentTopBar/index.js +5 -0
- package/src/components/DocumentsList/DocumentsList.vue +126 -0
- package/src/components/DocumentsList/index.js +1 -0
- package/src/components/ErrorMessage.vue +40 -0
- package/src/components/NotOptimizedViewportModal.vue +54 -0
- package/src/constants.js +4 -0
- package/src/directives/scroll.js +28 -0
- package/src/i18n.js +23 -0
- package/src/locales/de.json +114 -0
- package/src/locales/en.json +114 -0
- package/src/locales/es.json +113 -0
- package/src/main.js +87 -0
- package/src/store/category.js +193 -0
- package/src/store/display.js +238 -0
- package/src/store/document.js +1057 -0
- package/src/store/edit.js +210 -0
- package/src/store/index.js +22 -0
- package/src/store/project.js +95 -0
- package/src/store/selection.js +179 -0
- package/src/utils/utils.js +3 -0
- package/vue.config.js +13 -0
|
@@ -0,0 +1,431 @@
|
|
|
1
|
+
@import "./imports.scss";
|
|
2
|
+
|
|
3
|
+
.document-edit {
|
|
4
|
+
display: flex;
|
|
5
|
+
flex: 1;
|
|
6
|
+
background-color: $background;
|
|
7
|
+
|
|
8
|
+
&.split-overview-component {
|
|
9
|
+
min-width: 600px;
|
|
10
|
+
flex: 0;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.pages-section {
|
|
14
|
+
width: 100%;
|
|
15
|
+
overflow-y: scroll;
|
|
16
|
+
border-right: $component-border;
|
|
17
|
+
border-left: $component-border;
|
|
18
|
+
|
|
19
|
+
.document-grid {
|
|
20
|
+
padding: 42px;
|
|
21
|
+
display: grid;
|
|
22
|
+
grid-template-columns: repeat(auto-fill, minmax(138px, 138px));
|
|
23
|
+
justify-items: center;
|
|
24
|
+
gap: 20px;
|
|
25
|
+
|
|
26
|
+
.image-section {
|
|
27
|
+
width: 138px;
|
|
28
|
+
height: 138px;
|
|
29
|
+
display: flex;
|
|
30
|
+
align-items: center;
|
|
31
|
+
|
|
32
|
+
.img-container {
|
|
33
|
+
&:hover {
|
|
34
|
+
cursor: pointer;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.img-thumbnail {
|
|
38
|
+
border: $component-border;
|
|
39
|
+
border-radius: 2px;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
&.selected {
|
|
43
|
+
.img-thumbnail {
|
|
44
|
+
border-color: $dark-blue;
|
|
45
|
+
filter: contrast(0.7);
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.splitting-lines {
|
|
51
|
+
cursor: pointer;
|
|
52
|
+
position: relative;
|
|
53
|
+
height: 130px;
|
|
54
|
+
display: flex;
|
|
55
|
+
align-items: center;
|
|
56
|
+
padding-bottom: 20px;
|
|
57
|
+
|
|
58
|
+
.lines {
|
|
59
|
+
display: flex;
|
|
60
|
+
margin-left: 6px;
|
|
61
|
+
padding-right: 19px;
|
|
62
|
+
width: 25px;
|
|
63
|
+
align-items: center;
|
|
64
|
+
justify-content: center;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.scissors-icon {
|
|
68
|
+
display: none;
|
|
69
|
+
transform: rotate(-90deg);
|
|
70
|
+
position: absolute;
|
|
71
|
+
z-index: 999;
|
|
72
|
+
top: 42px;
|
|
73
|
+
left: 3.3px;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
&:hover {
|
|
77
|
+
.scissors-icon {
|
|
78
|
+
display: block;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
&.active-split {
|
|
83
|
+
.lines {
|
|
84
|
+
margin-left: 3px;
|
|
85
|
+
margin-right: 3px;
|
|
86
|
+
padding-right: 12px;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
&:hover {
|
|
90
|
+
.scissors-icon {
|
|
91
|
+
display: none;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
&:last-child {
|
|
98
|
+
.splitting-lines {
|
|
99
|
+
display: none;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.image-container {
|
|
104
|
+
width: fit-content;
|
|
105
|
+
display: flex;
|
|
106
|
+
flex-direction: column;
|
|
107
|
+
|
|
108
|
+
.thumbnail {
|
|
109
|
+
position: relative;
|
|
110
|
+
display: flex;
|
|
111
|
+
flex-direction: column;
|
|
112
|
+
justify-content: center;
|
|
113
|
+
align-items: center;
|
|
114
|
+
height: 130px;
|
|
115
|
+
width: 138px;
|
|
116
|
+
|
|
117
|
+
&:hover {
|
|
118
|
+
.icon-container {
|
|
119
|
+
display: flex;
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.icon-container {
|
|
124
|
+
position: absolute;
|
|
125
|
+
width: auto;
|
|
126
|
+
display: flex;
|
|
127
|
+
flex-direction: column;
|
|
128
|
+
align-items: center;
|
|
129
|
+
gap: 6px;
|
|
130
|
+
display: none;
|
|
131
|
+
|
|
132
|
+
.action-icon {
|
|
133
|
+
border-radius: 60px;
|
|
134
|
+
background-color: $dark-blue;
|
|
135
|
+
width: 32px;
|
|
136
|
+
height: 32px;
|
|
137
|
+
color: $white;
|
|
138
|
+
display: flex;
|
|
139
|
+
align-items: center;
|
|
140
|
+
justify-content: center;
|
|
141
|
+
cursor: pointer;
|
|
142
|
+
|
|
143
|
+
svg {
|
|
144
|
+
height: 21px;
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.page-number {
|
|
151
|
+
color: $text-lighter;
|
|
152
|
+
font-size: 12px;
|
|
153
|
+
line-height: 12px;
|
|
154
|
+
font-weight: 400;
|
|
155
|
+
align-self: center;
|
|
156
|
+
padding-bottom: 10px;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
&.split-overview {
|
|
160
|
+
img {
|
|
161
|
+
height: 30px !important;
|
|
162
|
+
width: 30px !important;
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.sidebar {
|
|
171
|
+
width: 45%;
|
|
172
|
+
background-color: $background;
|
|
173
|
+
|
|
174
|
+
.edit-sidebar {
|
|
175
|
+
display: flex;
|
|
176
|
+
flex-direction: column;
|
|
177
|
+
align-items: center;
|
|
178
|
+
justify-content: center;
|
|
179
|
+
text-align: center;
|
|
180
|
+
height: calc(100% - 60px);
|
|
181
|
+
gap: 50px;
|
|
182
|
+
|
|
183
|
+
.sidebar-header {
|
|
184
|
+
width: 85%;
|
|
185
|
+
height: 50%;
|
|
186
|
+
|
|
187
|
+
h3 {
|
|
188
|
+
color: $dark-blue;
|
|
189
|
+
font-weight: 600;
|
|
190
|
+
font-size: 16px;
|
|
191
|
+
line-height: 24px;
|
|
192
|
+
padding-bottom: 15px;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.description {
|
|
196
|
+
color: $grey;
|
|
197
|
+
font-size: 14px;
|
|
198
|
+
font-weight: 400;
|
|
199
|
+
line-height: 20px;
|
|
200
|
+
|
|
201
|
+
&:last-child {
|
|
202
|
+
padding-top: 12px;
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.buttons-container {
|
|
208
|
+
width: 85%;
|
|
209
|
+
display: flex;
|
|
210
|
+
flex-direction: column;
|
|
211
|
+
gap: 24px;
|
|
212
|
+
color: $grey-dark;
|
|
213
|
+
|
|
214
|
+
.pages-selected {
|
|
215
|
+
font-weight: 400;
|
|
216
|
+
font-size: 14px;
|
|
217
|
+
|
|
218
|
+
&.disabled {
|
|
219
|
+
color: $grey;
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.rotate {
|
|
224
|
+
display: flex;
|
|
225
|
+
flex-direction: column;
|
|
226
|
+
gap: 8px;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.rotate-button {
|
|
230
|
+
display: flex;
|
|
231
|
+
align-items: center;
|
|
232
|
+
justify-content: center;
|
|
233
|
+
padding: 0 !important;
|
|
234
|
+
white-space: initial;
|
|
235
|
+
line-height: 1;
|
|
236
|
+
gap: 5px;
|
|
237
|
+
|
|
238
|
+
.button-content {
|
|
239
|
+
display: flex;
|
|
240
|
+
align-items: center;
|
|
241
|
+
justify-content: center;
|
|
242
|
+
|
|
243
|
+
.button-text {
|
|
244
|
+
font-size: 16px;
|
|
245
|
+
max-width: 70%;
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
@media (max-width: 1150px) {
|
|
254
|
+
.sidebar {
|
|
255
|
+
width: 50%;
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
@media (max-width: 1100px) {
|
|
260
|
+
.sidebar {
|
|
261
|
+
width: 60%;
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
&.split-overview-component {
|
|
266
|
+
background-color: $background;
|
|
267
|
+
|
|
268
|
+
.split-overview-section {
|
|
269
|
+
padding-left: 30px;
|
|
270
|
+
padding-right: 10px;
|
|
271
|
+
overflow-y: scroll;
|
|
272
|
+
width: 100%;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.split-overview {
|
|
276
|
+
margin-top: 20px;
|
|
277
|
+
|
|
278
|
+
.back-section {
|
|
279
|
+
display: flex;
|
|
280
|
+
align-items: center;
|
|
281
|
+
gap: 11px;
|
|
282
|
+
width: fit-content;
|
|
283
|
+
margin-bottom: 26px;
|
|
284
|
+
cursor: pointer;
|
|
285
|
+
|
|
286
|
+
.back-btn-section {
|
|
287
|
+
padding-top: 5px;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
.back-text {
|
|
291
|
+
color: $grey;
|
|
292
|
+
font-weight: 400;
|
|
293
|
+
font-size: 14px;
|
|
294
|
+
line-height: 20px;
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.overview-title {
|
|
299
|
+
color: $dark-blue;
|
|
300
|
+
font-size: 16px;
|
|
301
|
+
font-weight: 600;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.new-documents-container {
|
|
305
|
+
padding-bottom: 30px;
|
|
306
|
+
padding-top: 35px;
|
|
307
|
+
padding-right: 10px;
|
|
308
|
+
|
|
309
|
+
.document-details {
|
|
310
|
+
display: flex;
|
|
311
|
+
align-items: center;
|
|
312
|
+
gap: 20px;
|
|
313
|
+
padding-bottom: 40px;
|
|
314
|
+
|
|
315
|
+
.overview-thumbnails {
|
|
316
|
+
display: flex;
|
|
317
|
+
align-items: center;
|
|
318
|
+
justify-content: center;
|
|
319
|
+
width: 60px;
|
|
320
|
+
|
|
321
|
+
.split-documents {
|
|
322
|
+
display: flex;
|
|
323
|
+
align-items: center;
|
|
324
|
+
|
|
325
|
+
.image-container {
|
|
326
|
+
.thumbnail {
|
|
327
|
+
display: flex;
|
|
328
|
+
align-items: center;
|
|
329
|
+
justify-content: center;
|
|
330
|
+
|
|
331
|
+
.page-thumbnail {
|
|
332
|
+
border: $component-border;
|
|
333
|
+
border-radius: 2px;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
&.page-stack {
|
|
337
|
+
.page-thumbnail {
|
|
338
|
+
box-shadow: 2px 2px $white, 3px 3px $detail,
|
|
339
|
+
5px 5px $white, 6px 6px $detail;
|
|
340
|
+
}
|
|
341
|
+
}
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
.icon-container {
|
|
346
|
+
position: absolute;
|
|
347
|
+
display: none;
|
|
348
|
+
|
|
349
|
+
.action-icon {
|
|
350
|
+
border-radius: 60px;
|
|
351
|
+
background-color: $dark-blue;
|
|
352
|
+
width: 28px;
|
|
353
|
+
height: 28px;
|
|
354
|
+
color: $white;
|
|
355
|
+
display: flex;
|
|
356
|
+
align-items: center;
|
|
357
|
+
justify-content: center;
|
|
358
|
+
cursor: pointer;
|
|
359
|
+
|
|
360
|
+
svg {
|
|
361
|
+
height: 21px;
|
|
362
|
+
}
|
|
363
|
+
}
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
&:hover {
|
|
367
|
+
.icon-container {
|
|
368
|
+
display: flex;
|
|
369
|
+
}
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
.doc-info {
|
|
375
|
+
display: flex;
|
|
376
|
+
justify-content: space-between;
|
|
377
|
+
flex: 1;
|
|
378
|
+
gap: 8px;
|
|
379
|
+
|
|
380
|
+
.file-name-section {
|
|
381
|
+
display: flex;
|
|
382
|
+
height: 40px;
|
|
383
|
+
flex: 2;
|
|
384
|
+
|
|
385
|
+
.control {
|
|
386
|
+
.input {
|
|
387
|
+
border-radius: 4px 0 0 4px !important;
|
|
388
|
+
box-shadow: none !important;
|
|
389
|
+
border-right: 0;
|
|
390
|
+
|
|
391
|
+
&:hover {
|
|
392
|
+
border-color: $grey-outline;
|
|
393
|
+
}
|
|
394
|
+
}
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
.name-input {
|
|
398
|
+
display: flex;
|
|
399
|
+
align-items: center;
|
|
400
|
+
height: 100%;
|
|
401
|
+
width: 100%;
|
|
402
|
+
max-width: 100%;
|
|
403
|
+
padding: 12px;
|
|
404
|
+
border-radius: 4px 0 0 4px;
|
|
405
|
+
border: 1px solid $grey-outline;
|
|
406
|
+
border-right: 0;
|
|
407
|
+
background-color: $white;
|
|
408
|
+
cursor: text;
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
.file-extension-container {
|
|
412
|
+
display: flex;
|
|
413
|
+
align-items: center;
|
|
414
|
+
padding: 13px;
|
|
415
|
+
height: 40px;
|
|
416
|
+
border-radius: 0 4px 4px 0;
|
|
417
|
+
border: 1px solid $grey-outline;
|
|
418
|
+
background-color: $white;
|
|
419
|
+
color: $grey-blue;
|
|
420
|
+
}
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
.category {
|
|
424
|
+
flex: 1;
|
|
425
|
+
}
|
|
426
|
+
}
|
|
427
|
+
}
|
|
428
|
+
}
|
|
429
|
+
}
|
|
430
|
+
}
|
|
431
|
+
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
@import "./imports.scss";
|
|
2
|
+
|
|
3
|
+
.document-error-modal {
|
|
4
|
+
text-align: left;
|
|
5
|
+
|
|
6
|
+
.modal {
|
|
7
|
+
&.is-active {
|
|
8
|
+
.modal-content {
|
|
9
|
+
height: auto;
|
|
10
|
+
max-width: 400px !important;
|
|
11
|
+
|
|
12
|
+
.modal-close {
|
|
13
|
+
display: none !important;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.modal-card-body {
|
|
17
|
+
background: $white;
|
|
18
|
+
border-radius: 12px 12px 0 0 !important;
|
|
19
|
+
|
|
20
|
+
.header {
|
|
21
|
+
display: flex;
|
|
22
|
+
justify-content: space-between;
|
|
23
|
+
|
|
24
|
+
.error-icon {
|
|
25
|
+
width: 48px;
|
|
26
|
+
height: 48px;
|
|
27
|
+
border-radius: 50%;
|
|
28
|
+
background: $low-opacity-red;
|
|
29
|
+
display: flex;
|
|
30
|
+
align-items: center;
|
|
31
|
+
justify-content: center;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.close-btn {
|
|
35
|
+
color: $grey;
|
|
36
|
+
|
|
37
|
+
&:hover {
|
|
38
|
+
cursor: pointer;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.content {
|
|
44
|
+
padding-top: 15px;
|
|
45
|
+
color: $dark-blue !important;
|
|
46
|
+
|
|
47
|
+
h3 {
|
|
48
|
+
font-weight: 500 !important;
|
|
49
|
+
font-size: 18px !important;
|
|
50
|
+
line-height: 28px !important;
|
|
51
|
+
padding-bottom: 5px;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
p {
|
|
55
|
+
font-weight: 400;
|
|
56
|
+
line-height: 20px;
|
|
57
|
+
font-size: 14px;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.modal-card-foot {
|
|
63
|
+
display: flex;
|
|
64
|
+
justify-content: center;
|
|
65
|
+
border: none;
|
|
66
|
+
background: $white;
|
|
67
|
+
border-radius: 0 0 12px 12px;
|
|
68
|
+
padding-top: 0 !important;
|
|
69
|
+
|
|
70
|
+
.button {
|
|
71
|
+
width: 100%;
|
|
72
|
+
height: 44px;
|
|
73
|
+
font-weight: 500 !important;
|
|
74
|
+
font-size: 16px !important;
|
|
75
|
+
line-height: 24px !important;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}
|
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
@import "./imports.scss";
|
|
2
|
+
|
|
3
|
+
.handover-container {
|
|
4
|
+
.handover-btn {
|
|
5
|
+
font-size: 14px;
|
|
6
|
+
font-weight: 500;
|
|
7
|
+
|
|
8
|
+
&:hover {
|
|
9
|
+
background-color: $darker-green;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
&:focus {
|
|
13
|
+
box-shadow: none;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.handover-collapse {
|
|
18
|
+
position: absolute !important;
|
|
19
|
+
right: 20px;
|
|
20
|
+
top: 52px;
|
|
21
|
+
max-width: 435px;
|
|
22
|
+
max-height: 264px;
|
|
23
|
+
margin: 0;
|
|
24
|
+
|
|
25
|
+
.collapse-content {
|
|
26
|
+
.notification {
|
|
27
|
+
background-color: $white;
|
|
28
|
+
border: 1px solid $subtle-grey;
|
|
29
|
+
box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08),
|
|
30
|
+
0px 4px 6px -2px rgba(16, 24, 40, 0.03);
|
|
31
|
+
padding: 0;
|
|
32
|
+
|
|
33
|
+
.content {
|
|
34
|
+
.container {
|
|
35
|
+
display: flex;
|
|
36
|
+
align-items: center;
|
|
37
|
+
justify-content: space-between;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.header {
|
|
41
|
+
display: flex;
|
|
42
|
+
align-items: center;
|
|
43
|
+
justify-content: space-between;
|
|
44
|
+
border-bottom: 1px solid $subtle-grey;
|
|
45
|
+
padding: 15px;
|
|
46
|
+
|
|
47
|
+
.title {
|
|
48
|
+
margin: 0 !important;
|
|
49
|
+
color: $dark-blue;
|
|
50
|
+
font-size: 14px;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.input-container {
|
|
55
|
+
.input-section {
|
|
56
|
+
margin-top: 7px;
|
|
57
|
+
padding-left: 15px;
|
|
58
|
+
padding-right: 15px;
|
|
59
|
+
font-size: 14px;
|
|
60
|
+
|
|
61
|
+
::placeholder {
|
|
62
|
+
font-size: 14px;
|
|
63
|
+
font-weight: 400;
|
|
64
|
+
color: $grey;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.handover-btn-menu {
|
|
68
|
+
height: 40px;
|
|
69
|
+
width: 97px;
|
|
70
|
+
background-color: $dark-blue;
|
|
71
|
+
color: $white;
|
|
72
|
+
font-size: 14px;
|
|
73
|
+
border: 0;
|
|
74
|
+
|
|
75
|
+
&:focus {
|
|
76
|
+
box-shadow: none;
|
|
77
|
+
border: 0;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.field {
|
|
82
|
+
margin: 0 !important;
|
|
83
|
+
padding-right: 8px;
|
|
84
|
+
|
|
85
|
+
.validation-message {
|
|
86
|
+
display: none;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.control {
|
|
90
|
+
width: 298px;
|
|
91
|
+
height: 40px;
|
|
92
|
+
|
|
93
|
+
.input {
|
|
94
|
+
border-color: $subtlest-grey;
|
|
95
|
+
font-size: 14px;
|
|
96
|
+
height: 40px;
|
|
97
|
+
|
|
98
|
+
&:focus {
|
|
99
|
+
box-shadow: none !important;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.loading-overlay.is-active {
|
|
106
|
+
position: relative;
|
|
107
|
+
height: 40px;
|
|
108
|
+
width: 97px;
|
|
109
|
+
border-radius: 4px;
|
|
110
|
+
background-color: $dark-blue;
|
|
111
|
+
|
|
112
|
+
.spinner {
|
|
113
|
+
color: $white;
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
&.invalid {
|
|
119
|
+
.input {
|
|
120
|
+
border-color: $red !important;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.invalid-email-msg {
|
|
125
|
+
color: $red;
|
|
126
|
+
margin: 8px 15px 20px 15px;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.members-section {
|
|
131
|
+
margin: 15px;
|
|
132
|
+
margin-right: 0;
|
|
133
|
+
|
|
134
|
+
.members-title {
|
|
135
|
+
display: flex !important;
|
|
136
|
+
margin-bottom: 10px;
|
|
137
|
+
|
|
138
|
+
.title {
|
|
139
|
+
color: $grey !important;
|
|
140
|
+
font-size: 12px !important;
|
|
141
|
+
font-weight: 400 !important;
|
|
142
|
+
margin-bottom: 0 !important;
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.member-list {
|
|
147
|
+
max-height: 110px;
|
|
148
|
+
padding-right: 15px;
|
|
149
|
+
|
|
150
|
+
&.scroll {
|
|
151
|
+
overflow: auto;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.member {
|
|
155
|
+
padding-bottom: 7px;
|
|
156
|
+
|
|
157
|
+
.email {
|
|
158
|
+
margin-bottom: 0 !important;
|
|
159
|
+
color: $grey-darker;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.select-btn {
|
|
163
|
+
height: 32px;
|
|
164
|
+
color: $dark-blue;
|
|
165
|
+
font-weight: 500;
|
|
166
|
+
font-size: 14px;
|
|
167
|
+
|
|
168
|
+
&:hover {
|
|
169
|
+
background-color: $grey-hover;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
&:focus {
|
|
173
|
+
box-shadow: none;
|
|
174
|
+
border-color: $grey-outline;
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.close-icon-container {
|
|
185
|
+
cursor: pointer;
|
|
186
|
+
display: flex;
|
|
187
|
+
align-items: center;
|
|
188
|
+
|
|
189
|
+
.close-btn {
|
|
190
|
+
&.error-icon {
|
|
191
|
+
color: $grey;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
&.snackbar-icon {
|
|
195
|
+
color: $white;
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
}
|