@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,472 @@
|
|
|
1
|
+
@import "./imports.scss";
|
|
2
|
+
|
|
3
|
+
.labels-sidebar {
|
|
4
|
+
font-family: $font-family;
|
|
5
|
+
flex: 1;
|
|
6
|
+
background-color: $background;
|
|
7
|
+
position: relative;
|
|
8
|
+
display: flex;
|
|
9
|
+
flex-direction: column;
|
|
10
|
+
|
|
11
|
+
&.disabled {
|
|
12
|
+
pointer-events: none;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.annotations-skeleton {
|
|
16
|
+
.label-set-name-skeleton {
|
|
17
|
+
margin: 24px 16px 8px 16px;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.label-properties-skeleton {
|
|
21
|
+
padding-left: 16px;
|
|
22
|
+
padding-right: 16px;
|
|
23
|
+
padding-bottom: 8px;
|
|
24
|
+
width: 100%;
|
|
25
|
+
box-shadow: 0px 1px 0px $grey-lightest;
|
|
26
|
+
display: flex;
|
|
27
|
+
align-items: center;
|
|
28
|
+
|
|
29
|
+
.loading-left {
|
|
30
|
+
display: flex;
|
|
31
|
+
width: 80%;
|
|
32
|
+
align-items: center;
|
|
33
|
+
gap: 10px;
|
|
34
|
+
|
|
35
|
+
.label-skeleton {
|
|
36
|
+
padding-top: 1px;
|
|
37
|
+
width: 100%;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.loading-right {
|
|
42
|
+
width: 100%;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.annotation-set-list {
|
|
48
|
+
padding-bottom: 16px;
|
|
49
|
+
overflow: auto;
|
|
50
|
+
max-height: 100%;
|
|
51
|
+
|
|
52
|
+
&.showing-rejected {
|
|
53
|
+
height: calc(100% - 56px);
|
|
54
|
+
padding-bottom: 130px;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.annotation-set-group {
|
|
58
|
+
.label-set-header {
|
|
59
|
+
display: flex;
|
|
60
|
+
align-items: center;
|
|
61
|
+
justify-content: space-between;
|
|
62
|
+
height: 32px;
|
|
63
|
+
margin: 24px 16px 8px 16px;
|
|
64
|
+
|
|
65
|
+
&:hover {
|
|
66
|
+
background-color: $background;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.label-set-name {
|
|
70
|
+
font-weight: 600;
|
|
71
|
+
font-size: 14px;
|
|
72
|
+
line-height: 20px;
|
|
73
|
+
color: $text;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.labels {
|
|
79
|
+
.label {
|
|
80
|
+
.label-group {
|
|
81
|
+
display: flex;
|
|
82
|
+
flex-direction: row;
|
|
83
|
+
justify-content: space-between;
|
|
84
|
+
align-items: center;
|
|
85
|
+
border-bottom: 1px solid $grey-lightest;
|
|
86
|
+
min-height: 44px;
|
|
87
|
+
cursor: pointer;
|
|
88
|
+
|
|
89
|
+
.label-group-left {
|
|
90
|
+
display: flex;
|
|
91
|
+
flex-direction: row;
|
|
92
|
+
padding-left: 28px;
|
|
93
|
+
color: $text-lighter;
|
|
94
|
+
align-items: center;
|
|
95
|
+
|
|
96
|
+
.label-name {
|
|
97
|
+
padding-left: 20px;
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.label-group-right {
|
|
102
|
+
display: flex;
|
|
103
|
+
flex-direction: row;
|
|
104
|
+
font-weight: 400;
|
|
105
|
+
font-size: 14px;
|
|
106
|
+
line-height: 20px;
|
|
107
|
+
padding-right: 16px;
|
|
108
|
+
cursor: default;
|
|
109
|
+
|
|
110
|
+
.label-annotations-pending {
|
|
111
|
+
padding: 0px 8px;
|
|
112
|
+
border-radius: 20px;
|
|
113
|
+
background: $grey-lighter-low-opacity;
|
|
114
|
+
color: $text-lighter;
|
|
115
|
+
margin-right: 4px;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.label-annotations-accepted {
|
|
119
|
+
padding: 0px 8px;
|
|
120
|
+
border-radius: 20px;
|
|
121
|
+
background: $green-low-opacity;
|
|
122
|
+
color: $green;
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.label-group-annotation-list {
|
|
128
|
+
background-color: $grey-hover;
|
|
129
|
+
|
|
130
|
+
.annotation-row {
|
|
131
|
+
padding-left: 16px;
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.label-name {
|
|
136
|
+
color: $text-lighter;
|
|
137
|
+
word-break: break-word;
|
|
138
|
+
font-size: 14px;
|
|
139
|
+
line-height: 20px;
|
|
140
|
+
font-weight: 400;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.annotation-row {
|
|
144
|
+
width: 100%;
|
|
145
|
+
border-bottom: 1px solid $grey-lightest;
|
|
146
|
+
transition: background-color 0.2s ease-out;
|
|
147
|
+
display: flex;
|
|
148
|
+
align-items: center;
|
|
149
|
+
padding-right: 5px;
|
|
150
|
+
|
|
151
|
+
.annotation-row-left {
|
|
152
|
+
flex: 1;
|
|
153
|
+
padding-left: 8px;
|
|
154
|
+
display: flex;
|
|
155
|
+
align-items: center;
|
|
156
|
+
|
|
157
|
+
.label-name {
|
|
158
|
+
padding: 10px 0;
|
|
159
|
+
padding-right: 4px;
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.annotation-row-right {
|
|
164
|
+
width: 60%;
|
|
165
|
+
display: flex;
|
|
166
|
+
align-items: center;
|
|
167
|
+
|
|
168
|
+
.notification {
|
|
169
|
+
background-color: transparent;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.annotation-content {
|
|
173
|
+
width: 100%;
|
|
174
|
+
font-size: 14px;
|
|
175
|
+
line-height: 20px;
|
|
176
|
+
font-weight: 400;
|
|
177
|
+
|
|
178
|
+
.annotation,
|
|
179
|
+
.empty-annotation {
|
|
180
|
+
min-height: 36px;
|
|
181
|
+
display: flex;
|
|
182
|
+
align-items: center;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.loading-container {
|
|
186
|
+
height: 20px;
|
|
187
|
+
display: flex;
|
|
188
|
+
align-items: center;
|
|
189
|
+
|
|
190
|
+
.loading-icon-size {
|
|
191
|
+
width: 13px;
|
|
192
|
+
height: 13px;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.spinner {
|
|
197
|
+
color: $grey;
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.buttons-container {
|
|
202
|
+
display: flex;
|
|
203
|
+
gap: 8px;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.annotation-value {
|
|
207
|
+
display: inline-block;
|
|
208
|
+
color: $text;
|
|
209
|
+
padding: 0 8px;
|
|
210
|
+
border: none;
|
|
211
|
+
background-color: transparent;
|
|
212
|
+
inline-size: 100%;
|
|
213
|
+
overflow-wrap: break-word;
|
|
214
|
+
word-break: break-all;
|
|
215
|
+
|
|
216
|
+
&:focus {
|
|
217
|
+
outline: none;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
&.label-empty {
|
|
221
|
+
font-weight: 500;
|
|
222
|
+
font-size: 14px;
|
|
223
|
+
color: $primary;
|
|
224
|
+
|
|
225
|
+
&.clicked {
|
|
226
|
+
font-weight: 400;
|
|
227
|
+
color: $text-lighter;
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.empty-annotation {
|
|
234
|
+
display: flex;
|
|
235
|
+
width: 100%;
|
|
236
|
+
justify-content: space-between;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
&:hover,
|
|
240
|
+
&.selected {
|
|
241
|
+
background-color: $grey-lightest;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
&.hovered-empty-labels {
|
|
245
|
+
background-color: $grey-lightest;
|
|
246
|
+
outline: 1px solid $grey-detail;
|
|
247
|
+
margin-bottom: 1px;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
&.hovered-pending-annotations {
|
|
251
|
+
background-color: $green-hover-background;
|
|
252
|
+
outline: 1px solid $green-border;
|
|
253
|
+
margin-bottom: 1px;
|
|
254
|
+
|
|
255
|
+
.annotation-row-right {
|
|
256
|
+
.annotation-content {
|
|
257
|
+
.annotation {
|
|
258
|
+
min-height: 43px;
|
|
259
|
+
padding-top: 1px;
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.annotation-row-left {
|
|
265
|
+
.annotation-details,
|
|
266
|
+
.label-name {
|
|
267
|
+
margin-bottom: -1px;
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
&.editing {
|
|
273
|
+
background-color: $background;
|
|
274
|
+
border-bottom: 1px solid $primary;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.saving-changes {
|
|
278
|
+
color: $grey;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.error-editing {
|
|
282
|
+
color: $red;
|
|
283
|
+
animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
|
|
284
|
+
transform: translate3d(0, 0, 0);
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
@keyframes shake {
|
|
288
|
+
10%,
|
|
289
|
+
90% {
|
|
290
|
+
transform: translate3d(-1px, 0, 0);
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
20%,
|
|
294
|
+
80% {
|
|
295
|
+
transform: translate3d(2px, 0, 0);
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
30%,
|
|
299
|
+
50%,
|
|
300
|
+
70% {
|
|
301
|
+
transform: translate3d(-4px, 0, 0);
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
40%,
|
|
305
|
+
60% {
|
|
306
|
+
transform: translate3d(4px, 0, 0);
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
.action-buttons {
|
|
315
|
+
display: flex;
|
|
316
|
+
gap: 6px;
|
|
317
|
+
|
|
318
|
+
button {
|
|
319
|
+
height: 32px;
|
|
320
|
+
|
|
321
|
+
&.annotation-save-btn,
|
|
322
|
+
&.annotation-accept-btn {
|
|
323
|
+
padding: 6px 14px 6px 14px;
|
|
324
|
+
border-radius: 8px;
|
|
325
|
+
font-weight: 500;
|
|
326
|
+
font-size: 14px;
|
|
327
|
+
line-height: 20px;
|
|
328
|
+
width: auto;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
&.annotation-cancel-btn {
|
|
332
|
+
padding-top: 8px !important;
|
|
333
|
+
border: none !important;
|
|
334
|
+
background-color: transparent !important;
|
|
335
|
+
width: 32px;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
&.accept-all-btn {
|
|
339
|
+
color: $primary !important;
|
|
340
|
+
font-size: 14px !important;
|
|
341
|
+
font-weight: 500;
|
|
342
|
+
background-color: transparent !important;
|
|
343
|
+
width: auto;
|
|
344
|
+
|
|
345
|
+
&:hover {
|
|
346
|
+
text-decoration: none !important;
|
|
347
|
+
color: $primary-dark !important;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
&:focus {
|
|
351
|
+
box-shadow: none !important;
|
|
352
|
+
}
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
&.finish-review-btn {
|
|
356
|
+
height: 40px;
|
|
357
|
+
|
|
358
|
+
.icon:last-child:not(:first-child) {
|
|
359
|
+
margin: 0;
|
|
360
|
+
}
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
&.text-btn {
|
|
364
|
+
border-radius: 8px;
|
|
365
|
+
font-weight: 500;
|
|
366
|
+
font-size: 14px;
|
|
367
|
+
line-height: 20px;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
&.annotation-save-btn {
|
|
371
|
+
padding: 6px 14px 6px 14px;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
&.annotation-cancel-btn {
|
|
375
|
+
border: none !important;
|
|
376
|
+
background-color: transparent !important;
|
|
377
|
+
width: 32px;
|
|
378
|
+
}
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
.reject-decline-button-container {
|
|
382
|
+
background-color: transparent;
|
|
383
|
+
|
|
384
|
+
.reject-decline-btn {
|
|
385
|
+
color: $grey-blue !important;
|
|
386
|
+
font-size: 14px !important;
|
|
387
|
+
font-weight: 500;
|
|
388
|
+
background-color: transparent !important;
|
|
389
|
+
width: auto;
|
|
390
|
+
|
|
391
|
+
&:hover {
|
|
392
|
+
text-decoration: none !important;
|
|
393
|
+
color: $dark-blue !important;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
&:focus {
|
|
397
|
+
box-shadow: none !important;
|
|
398
|
+
}
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
.rejected-labels-list {
|
|
404
|
+
position: absolute;
|
|
405
|
+
bottom: 0;
|
|
406
|
+
background-color: $background;
|
|
407
|
+
max-height: 120px;
|
|
408
|
+
width: 100%;
|
|
409
|
+
border-top: $component-border;
|
|
410
|
+
|
|
411
|
+
.rejected-label-container {
|
|
412
|
+
margin-top: 15px;
|
|
413
|
+
margin-bottom: 5px;
|
|
414
|
+
|
|
415
|
+
.title {
|
|
416
|
+
font-weight: 400;
|
|
417
|
+
font-size: 14px;
|
|
418
|
+
line-height: 20px;
|
|
419
|
+
color: $dark-blue;
|
|
420
|
+
padding-bottom: 15px;
|
|
421
|
+
margin: 0;
|
|
422
|
+
padding-left: 15px;
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
.rejected-tag-container {
|
|
426
|
+
display: flex;
|
|
427
|
+
gap: 8px;
|
|
428
|
+
flex-wrap: wrap;
|
|
429
|
+
overflow-y: scroll;
|
|
430
|
+
max-height: 60px;
|
|
431
|
+
padding-left: 15px;
|
|
432
|
+
padding-right: 35px;
|
|
433
|
+
padding-bottom: 15px;
|
|
434
|
+
|
|
435
|
+
.label-name {
|
|
436
|
+
&.loading {
|
|
437
|
+
margin-right: 24px;
|
|
438
|
+
}
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
.tag-loading-container {
|
|
442
|
+
position: relative;
|
|
443
|
+
right: 25px;
|
|
444
|
+
width: 20px;
|
|
445
|
+
|
|
446
|
+
.loading-background {
|
|
447
|
+
padding: 12px;
|
|
448
|
+
}
|
|
449
|
+
}
|
|
450
|
+
}
|
|
451
|
+
}
|
|
452
|
+
}
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
.message {
|
|
456
|
+
.message-container {
|
|
457
|
+
display: flex;
|
|
458
|
+
flex: 1;
|
|
459
|
+
align-items: center;
|
|
460
|
+
justify-content: space-between;
|
|
461
|
+
gap: 15px;
|
|
462
|
+
font-size: 14px !important;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
.btn-container {
|
|
466
|
+
display: flex;
|
|
467
|
+
}
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
.hidden {
|
|
471
|
+
display: none !important;
|
|
472
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
@import "./imports.scss";
|
|
2
|
+
|
|
3
|
+
.category-chooser {
|
|
4
|
+
cursor: pointer;
|
|
5
|
+
|
|
6
|
+
&.split-mode {
|
|
7
|
+
border: 1px solid $grey-detail;
|
|
8
|
+
border-radius: 4px;
|
|
9
|
+
background-color: $white;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
&.disabled {
|
|
13
|
+
cursor: not-allowed;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.category-drop-down {
|
|
17
|
+
display: flex;
|
|
18
|
+
height: 100%;
|
|
19
|
+
align-items: center;
|
|
20
|
+
padding: 0 8px 0 14px;
|
|
21
|
+
border-right: $component-border;
|
|
22
|
+
|
|
23
|
+
&:hover {
|
|
24
|
+
background-color: $background;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.caret-section {
|
|
28
|
+
padding-top: 5px;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.caret,
|
|
32
|
+
.icon {
|
|
33
|
+
text-align: center;
|
|
34
|
+
margin-right: 4px;
|
|
35
|
+
|
|
36
|
+
&.split-mode-caret {
|
|
37
|
+
padding-left: 8px;
|
|
38
|
+
padding-right: 8px;
|
|
39
|
+
padding-top: 10px;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.category-info {
|
|
44
|
+
min-width: 100px;
|
|
45
|
+
width: 100px;
|
|
46
|
+
margin-left: 5px;
|
|
47
|
+
margin-right: 5px;
|
|
48
|
+
|
|
49
|
+
.category-title {
|
|
50
|
+
font-size: 12px;
|
|
51
|
+
color: $grey;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.category-name {
|
|
55
|
+
white-space: nowrap;
|
|
56
|
+
overflow: hidden;
|
|
57
|
+
text-overflow: ellipsis;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.left-bar-options {
|
|
61
|
+
display: flex;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.category-drop-down {
|
|
65
|
+
width: 155px;
|
|
66
|
+
display: flex;
|
|
67
|
+
align-items: center;
|
|
68
|
+
justify-content: space-evenly;
|
|
69
|
+
border-right: $component-border;
|
|
70
|
+
|
|
71
|
+
.category-info {
|
|
72
|
+
p {
|
|
73
|
+
font-size: 12px;
|
|
74
|
+
color: $grey;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
@import "./imports.scss";
|
|
2
|
+
|
|
3
|
+
.dashboard {
|
|
4
|
+
flex: 1;
|
|
5
|
+
display: flex;
|
|
6
|
+
flex-direction: column;
|
|
7
|
+
min-height: 0;
|
|
8
|
+
|
|
9
|
+
.dashboard-viewer {
|
|
10
|
+
display: flex;
|
|
11
|
+
min-height: 0;
|
|
12
|
+
height: 100%;
|
|
13
|
+
|
|
14
|
+
&.loading-skeleton {
|
|
15
|
+
overflow: hidden;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.dashboard-document {
|
|
19
|
+
height: 100%;
|
|
20
|
+
overflow-y: auto;
|
|
21
|
+
overflow-x: hidden;
|
|
22
|
+
position: relative;
|
|
23
|
+
flex: 1;
|
|
24
|
+
background-image: radial-gradient(#bfc1c9 0.8px, #ededed 0.1px);
|
|
25
|
+
background-size: 9px 9px;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
@media print {
|
|
29
|
+
.dashboard-document {
|
|
30
|
+
position: static;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.not-supported {
|
|
36
|
+
position: absolute;
|
|
37
|
+
top: 0;
|
|
38
|
+
bottom: 0;
|
|
39
|
+
left: 0;
|
|
40
|
+
right: 0;
|
|
41
|
+
background-color: white;
|
|
42
|
+
display: flex;
|
|
43
|
+
align-items: center;
|
|
44
|
+
justify-content: center;
|
|
45
|
+
z-index: 999;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
@import "./imports.scss";
|
|
2
|
+
|
|
3
|
+
.dataset-status-chooser {
|
|
4
|
+
margin-left: 0 !important;
|
|
5
|
+
cursor: pointer;
|
|
6
|
+
|
|
7
|
+
.dataset-status-drop-down {
|
|
8
|
+
display: flex;
|
|
9
|
+
height: 100%;
|
|
10
|
+
align-items: center;
|
|
11
|
+
padding: 0 8px 0 16px;
|
|
12
|
+
|
|
13
|
+
.caret,
|
|
14
|
+
.icon {
|
|
15
|
+
text-align: center;
|
|
16
|
+
margin-right: 8px;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.dataset-status-info {
|
|
20
|
+
min-width: 100px;
|
|
21
|
+
width: 100px;
|
|
22
|
+
|
|
23
|
+
.dataset-status-title {
|
|
24
|
+
font-size: 12px;
|
|
25
|
+
color: $grey;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.dataset-status-name {
|
|
29
|
+
white-space: nowrap;
|
|
30
|
+
overflow: hidden;
|
|
31
|
+
text-overflow: ellipsis;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.dropdown-menu-title {
|
|
37
|
+
padding-left: 16px;
|
|
38
|
+
font-weight: 400;
|
|
39
|
+
font-size: 12px;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
p {
|
|
43
|
+
font-size: 12px;
|
|
44
|
+
color: $grey;
|
|
45
|
+
}
|
|
46
|
+
}
|