@konfuzio/document-validation-ui 0.1.59 → 0.2.0-dev.2
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/cypress.config.js +6 -6
- package/dist/css/app.css +1 -1
- package/dist/index.html +1 -1
- package/dist/js/app.js +1 -1
- package/dist/js/app.js.map +1 -1
- package/dist/js/chunk-vendors.js +66 -23
- package/dist/js/chunk-vendors.js.map +1 -1
- package/jest.config.js +22 -2
- package/package.json +32 -38
- package/src/assets/scss/ann_set_table_options.scss +4 -4
- package/src/assets/scss/annotation_action_buttons.scss +29 -7
- package/src/assets/scss/annotation_details.scss +9 -9
- package/src/assets/scss/choose_label_set_modal.scss +5 -5
- package/src/assets/scss/document_action_bar.scss +3 -3
- package/src/assets/scss/document_annotations.scss +45 -45
- package/src/assets/scss/document_category.scss +8 -8
- package/src/assets/scss/document_dashboard.scss +6 -1
- package/src/assets/scss/document_edit.scss +30 -30
- package/src/assets/scss/document_error.scss +6 -6
- package/src/assets/scss/document_name.scss +6 -6
- package/src/assets/scss/document_page.scss +3 -3
- package/src/assets/scss/document_search_bar.scss +7 -7
- package/src/assets/scss/document_set_chooser.scss +3 -3
- package/src/assets/scss/document_thumbnails.scss +7 -7
- package/src/assets/scss/document_toolbar.scss +10 -10
- package/src/assets/scss/document_top_bar.scss +11 -11
- package/src/assets/scss/document_viewport_modal.scss +3 -3
- package/src/assets/scss/documents_list.scss +11 -12
- package/src/assets/scss/edit_page_thumbnail.scss +6 -6
- package/src/assets/scss/empty_state.scss +4 -4
- package/src/assets/scss/error_page.scss +2 -2
- package/src/assets/scss/extracting_data.scss +3 -3
- package/src/assets/scss/multi_ann_table_overlay.scss +3 -3
- package/src/assets/scss/multi_ann_table_popup.scss +1 -1
- package/src/assets/scss/new_annotation.scss +25 -19
- package/src/assets/scss/scrolling_document.scss +1 -1
- package/src/assets/scss/theme.scss +64 -52
- package/src/assets/scss/variables.scss +2 -0
- package/src/components/App.vue +9 -14
- package/src/components/DocumentAnnotations/AnnotationActionButtons.vue +31 -7
- package/src/components/DocumentAnnotations/AnnotationContent.vue +25 -52
- package/src/components/DocumentAnnotations/AnnotationRow.vue +108 -51
- package/src/components/DocumentAnnotations/DocumentAnnotations.vue +12 -6
- package/src/components/DocumentAnnotations/DocumentLabel.vue +12 -122
- package/src/components/DocumentAnnotations/EmptyAnnotation.vue +31 -70
- package/src/components/DocumentDashboard.vue +12 -17
- package/src/components/DocumentEdit/EditPages.vue +51 -46
- package/src/components/DocumentEdit/EditSidebar.vue +0 -9
- package/src/components/DocumentPage/{NewAnnotation.vue → AnnotationPopup.vue} +123 -94
- package/src/components/DocumentPage/BoxSelection.vue +16 -49
- package/src/components/DocumentPage/DocumentPage.vue +56 -153
- package/src/components/DocumentPage/DocumentToolbar.vue +0 -1
- package/src/components/DocumentPage/PlaceholderSelection.vue +51 -0
- package/src/components/DocumentPage/SpanSelection.vue +259 -0
- package/src/components/DocumentThumbnails/LoadingThumbnail.vue +3 -6
- package/src/components/DocumentTopBar/DocumentTopBar.vue +4 -2
- package/src/constants.js +1 -7
- package/src/i18n.js +2 -5
- package/src/locales/de.json +2 -1
- package/src/locales/en.json +2 -1
- package/src/locales/es.json +2 -1
- package/src/main.js +14 -16
- package/src/store/display.js +33 -22
- package/src/store/document.js +131 -10
- package/src/store/index.js +5 -8
- package/src/store/selection.js +152 -76
- package/src/assets/scss/imports.scss +0 -1
- package/src/components/DocumentPage/EditAnnotation.vue +0 -372
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use "variables.scss";
|
|
2
2
|
|
|
3
3
|
.dashboard {
|
|
4
4
|
flex: 1;
|
|
@@ -23,6 +23,11 @@
|
|
|
23
23
|
background-size: 9px 9px;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
+
.document-sidebar {
|
|
27
|
+
overflow-y: auto;
|
|
28
|
+
background-color: variables.$background;
|
|
29
|
+
}
|
|
30
|
+
|
|
26
31
|
@media print {
|
|
27
32
|
.dashboard-document {
|
|
28
33
|
position: static;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use "variables.scss";
|
|
2
2
|
|
|
3
3
|
#document-edit {
|
|
4
4
|
display: flex;
|
|
5
|
-
background-color:
|
|
5
|
+
background-color: variables.$light-grey-background;
|
|
6
6
|
position: relative;
|
|
7
7
|
display: flex;
|
|
8
8
|
height: 100%;
|
|
@@ -10,21 +10,21 @@
|
|
|
10
10
|
.pages-section {
|
|
11
11
|
width: 100%;
|
|
12
12
|
overflow-y: scroll;
|
|
13
|
-
border-right:
|
|
14
|
-
border-left:
|
|
13
|
+
border-right: variables.$component-border;
|
|
14
|
+
border-left: variables.$component-border;
|
|
15
15
|
display: flex;
|
|
16
16
|
flex-direction: column;
|
|
17
17
|
justify-content: space-between;
|
|
18
18
|
|
|
19
19
|
.grid-header {
|
|
20
20
|
height: 60px;
|
|
21
|
-
background-color:
|
|
22
|
-
border-bottom:
|
|
21
|
+
background-color: variables.$background;
|
|
22
|
+
border-bottom: variables.$component-border;
|
|
23
23
|
display: flex;
|
|
24
24
|
align-items: center;
|
|
25
25
|
|
|
26
26
|
.header-title {
|
|
27
|
-
color:
|
|
27
|
+
color: variables.$text-color;
|
|
28
28
|
font-weight: 600;
|
|
29
29
|
font-size: 18px;
|
|
30
30
|
line-height: 18px;
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
|
|
58
58
|
.page-number {
|
|
59
59
|
margin-top: 8px;
|
|
60
|
-
color:
|
|
60
|
+
color: variables.$text-lighter;
|
|
61
61
|
font-size: 12px;
|
|
62
62
|
line-height: 12px;
|
|
63
63
|
font-weight: 400;
|
|
@@ -109,8 +109,7 @@
|
|
|
109
109
|
|
|
110
110
|
&:last-child {
|
|
111
111
|
.splitting-lines {
|
|
112
|
-
|
|
113
|
-
pointer-events: none;
|
|
112
|
+
display: none;
|
|
114
113
|
}
|
|
115
114
|
.page-number {
|
|
116
115
|
padding-right: 0px;
|
|
@@ -138,8 +137,8 @@
|
|
|
138
137
|
align-items: center;
|
|
139
138
|
justify-content: center;
|
|
140
139
|
gap: 3px;
|
|
141
|
-
background-color:
|
|
142
|
-
color:
|
|
140
|
+
background-color: variables.$text-color;
|
|
141
|
+
color: variables.$white;
|
|
143
142
|
font-weight: 400;
|
|
144
143
|
font-size: 14px;
|
|
145
144
|
border-radius: 52px;
|
|
@@ -152,7 +151,7 @@
|
|
|
152
151
|
width: 45%;
|
|
153
152
|
max-width: 300px;
|
|
154
153
|
min-width: 270px;
|
|
155
|
-
background-color:
|
|
154
|
+
background-color: variables.$background;
|
|
156
155
|
|
|
157
156
|
.edit-sidebar {
|
|
158
157
|
display: flex;
|
|
@@ -166,7 +165,7 @@
|
|
|
166
165
|
width: 85%;
|
|
167
166
|
display: flex;
|
|
168
167
|
flex-direction: column;
|
|
169
|
-
color:
|
|
168
|
+
color: variables.$grey-dark;
|
|
170
169
|
|
|
171
170
|
.pages-selected {
|
|
172
171
|
font-weight: 400;
|
|
@@ -174,7 +173,7 @@
|
|
|
174
173
|
margin-bottom: 15px;
|
|
175
174
|
|
|
176
175
|
&.disabled {
|
|
177
|
-
color:
|
|
176
|
+
color: variables.$grey;
|
|
178
177
|
}
|
|
179
178
|
}
|
|
180
179
|
|
|
@@ -182,7 +181,7 @@
|
|
|
182
181
|
display: flex;
|
|
183
182
|
flex-direction: column;
|
|
184
183
|
gap: 8px;
|
|
185
|
-
border-bottom: 1px solid
|
|
184
|
+
border-bottom: 1px solid variables.$grey-detail;
|
|
186
185
|
|
|
187
186
|
.sidebar-buttons {
|
|
188
187
|
.edit-mode-btn {
|
|
@@ -231,7 +230,7 @@
|
|
|
231
230
|
.switch-text {
|
|
232
231
|
font-size: 14px;
|
|
233
232
|
padding-right: 10px;
|
|
234
|
-
color:
|
|
233
|
+
color: variables.$grey-dark;
|
|
235
234
|
font-weight: 500;
|
|
236
235
|
}
|
|
237
236
|
}
|
|
@@ -242,7 +241,7 @@
|
|
|
242
241
|
font-weight: 700;
|
|
243
242
|
font-size: 11px;
|
|
244
243
|
padding: 5px;
|
|
245
|
-
color:
|
|
244
|
+
color: variables.$text-color;
|
|
246
245
|
}
|
|
247
246
|
}
|
|
248
247
|
}
|
|
@@ -262,7 +261,7 @@
|
|
|
262
261
|
}
|
|
263
262
|
|
|
264
263
|
&.rename-and-categorize-component {
|
|
265
|
-
background-color:
|
|
264
|
+
background-color: variables.$background;
|
|
266
265
|
min-width: 600px;
|
|
267
266
|
|
|
268
267
|
.rename-and-categorize-section {
|
|
@@ -292,7 +291,7 @@
|
|
|
292
291
|
}
|
|
293
292
|
|
|
294
293
|
.back-text {
|
|
295
|
-
color:
|
|
294
|
+
color: variables.$grey;
|
|
296
295
|
font-weight: 400;
|
|
297
296
|
font-size: 14px;
|
|
298
297
|
line-height: 20px;
|
|
@@ -300,7 +299,7 @@
|
|
|
300
299
|
}
|
|
301
300
|
|
|
302
301
|
.rename-and-categorize-title {
|
|
303
|
-
color:
|
|
302
|
+
color: variables.$text-color;
|
|
304
303
|
font-size: 16px;
|
|
305
304
|
font-weight: 600;
|
|
306
305
|
}
|
|
@@ -333,14 +332,15 @@
|
|
|
333
332
|
justify-content: center;
|
|
334
333
|
|
|
335
334
|
.page-thumbnail {
|
|
336
|
-
border:
|
|
335
|
+
border: variables.$component-border;
|
|
337
336
|
border-radius: 2px;
|
|
338
337
|
}
|
|
339
338
|
|
|
340
339
|
&.page-stack {
|
|
341
340
|
.page-thumbnail {
|
|
342
|
-
box-shadow: 2px 2px
|
|
343
|
-
5px 5px
|
|
341
|
+
box-shadow: 2px 2px variables.$white,
|
|
342
|
+
3px 3px variables.$detail, 5px 5px variables.$white,
|
|
343
|
+
6px 6px variables.$detail;
|
|
344
344
|
}
|
|
345
345
|
}
|
|
346
346
|
|
|
@@ -370,7 +370,7 @@
|
|
|
370
370
|
border-right: 0;
|
|
371
371
|
|
|
372
372
|
&:hover {
|
|
373
|
-
border-color:
|
|
373
|
+
border-color: variables.$grey-outline;
|
|
374
374
|
}
|
|
375
375
|
}
|
|
376
376
|
}
|
|
@@ -383,9 +383,9 @@
|
|
|
383
383
|
max-width: 100%;
|
|
384
384
|
padding: 12px;
|
|
385
385
|
border-radius: 4px 0 0 4px;
|
|
386
|
-
border: 1px solid
|
|
386
|
+
border: 1px solid variables.$grey-outline;
|
|
387
387
|
border-right: 0;
|
|
388
|
-
background-color:
|
|
388
|
+
background-color: variables.$white;
|
|
389
389
|
cursor: text;
|
|
390
390
|
}
|
|
391
391
|
|
|
@@ -395,9 +395,9 @@
|
|
|
395
395
|
padding: 13px;
|
|
396
396
|
height: 40px;
|
|
397
397
|
border-radius: 0 4px 4px 0;
|
|
398
|
-
border: 1px solid
|
|
399
|
-
background-color:
|
|
400
|
-
color:
|
|
398
|
+
border: 1px solid variables.$grey-outline;
|
|
399
|
+
background-color: variables.$white;
|
|
400
|
+
color: variables.$grey-blue;
|
|
401
401
|
}
|
|
402
402
|
}
|
|
403
403
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use "variables.scss";
|
|
2
2
|
|
|
3
3
|
.document-error-modal {
|
|
4
4
|
text-align: left;
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
.modal-card-body {
|
|
17
|
-
background:
|
|
17
|
+
background: variables.$white;
|
|
18
18
|
border-radius: 12px 12px 0 0 !important;
|
|
19
19
|
|
|
20
20
|
.header {
|
|
@@ -25,14 +25,14 @@
|
|
|
25
25
|
width: 48px;
|
|
26
26
|
height: 48px;
|
|
27
27
|
border-radius: 50%;
|
|
28
|
-
background:
|
|
28
|
+
background: variables.$low-opacity-red;
|
|
29
29
|
display: flex;
|
|
30
30
|
align-items: center;
|
|
31
31
|
justify-content: center;
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
.close-btn {
|
|
35
|
-
color:
|
|
35
|
+
color: variables.$grey;
|
|
36
36
|
|
|
37
37
|
&:hover {
|
|
38
38
|
cursor: pointer;
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
|
|
43
43
|
.content {
|
|
44
44
|
padding-top: 15px;
|
|
45
|
-
color:
|
|
45
|
+
color: variables.$text-color !important;
|
|
46
46
|
|
|
47
47
|
h3 {
|
|
48
48
|
font-weight: 500 !important;
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
display: flex;
|
|
64
64
|
justify-content: center;
|
|
65
65
|
border: none;
|
|
66
|
-
background:
|
|
66
|
+
background: variables.$white;
|
|
67
67
|
border-radius: 0 0 12px 12px;
|
|
68
68
|
padding-top: 0 !important;
|
|
69
69
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use "variables.scss";
|
|
2
2
|
|
|
3
3
|
.document-name-component {
|
|
4
4
|
display: flex;
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
.document-icon {
|
|
12
12
|
display: flex;
|
|
13
13
|
align-items: center;
|
|
14
|
-
border: 1px solid
|
|
14
|
+
border: 1px solid variables.$grey-detail;
|
|
15
15
|
border-radius: 1px;
|
|
16
16
|
}
|
|
17
17
|
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
white-space: nowrap;
|
|
29
29
|
border-radius: 8px;
|
|
30
30
|
padding: 6px 14px 6px 14px;
|
|
31
|
-
outline: 1px solid
|
|
31
|
+
outline: 1px solid variables.$grey-outline;
|
|
32
32
|
}
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
.btn {
|
|
36
|
-
color:
|
|
36
|
+
color: variables.$primary;
|
|
37
37
|
font-weight: 500;
|
|
38
38
|
}
|
|
39
39
|
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
display: flex;
|
|
46
46
|
align-items: center;
|
|
47
47
|
gap: 8px;
|
|
48
|
-
color:
|
|
48
|
+
color: variables.$grey;
|
|
49
49
|
|
|
50
50
|
.notification {
|
|
51
51
|
background-color: transparent;
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
.spinner {
|
|
56
|
-
color:
|
|
56
|
+
color: variables.$grey;
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
.cloud-icon {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use "variables.scss";
|
|
2
2
|
|
|
3
3
|
.pdf-page-container {
|
|
4
4
|
position: relative;
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
.annotation-label {
|
|
14
14
|
position: absolute;
|
|
15
15
|
z-index: 999;
|
|
16
|
-
background-color:
|
|
17
|
-
color:
|
|
16
|
+
background-color: variables.$text-color;
|
|
17
|
+
color: variables.$white;
|
|
18
18
|
font-size: 12px;
|
|
19
19
|
padding: 4px;
|
|
20
20
|
word-break: break-all;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use "variables.scss";
|
|
2
2
|
#document-search {
|
|
3
3
|
position: absolute;
|
|
4
4
|
right: 8px;
|
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
z-index: 95;
|
|
8
8
|
|
|
9
9
|
.search-container {
|
|
10
|
-
background-color:
|
|
11
|
-
color:
|
|
10
|
+
background-color: variables.$searchbar;
|
|
11
|
+
color: variables.$white;
|
|
12
12
|
height: 40px;
|
|
13
13
|
padding: 8px 4px;
|
|
14
14
|
border-radius: 8px;
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
&:hover {
|
|
29
|
-
background:
|
|
29
|
+
background: variables.$low-opacity-white;
|
|
30
30
|
border-radius: 4px;
|
|
31
31
|
color: inherit;
|
|
32
32
|
}
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
.search-no-results {
|
|
49
|
-
color:
|
|
49
|
+
color: variables.$text-lighter;
|
|
50
50
|
font-size: 12px;
|
|
51
51
|
}
|
|
52
52
|
|
|
@@ -58,14 +58,14 @@
|
|
|
58
58
|
.search-counters {
|
|
59
59
|
font-size: 12px;
|
|
60
60
|
margin-right: 6px;
|
|
61
|
-
color:
|
|
61
|
+
color: variables.$text-lighter;
|
|
62
62
|
}
|
|
63
63
|
}
|
|
64
64
|
|
|
65
65
|
.search-loading {
|
|
66
66
|
display: flex;
|
|
67
67
|
font-size: 12px;
|
|
68
|
-
color:
|
|
68
|
+
color: variables.$text-lighter;
|
|
69
69
|
}
|
|
70
70
|
}
|
|
71
71
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use "variables.scss";
|
|
2
2
|
.document-set-dropdown {
|
|
3
|
-
border-right:
|
|
4
|
-
border-left:
|
|
3
|
+
border-right: variables.$component-border;
|
|
4
|
+
border-left: variables.$component-border;
|
|
5
5
|
|
|
6
6
|
.dropdown-doc-set {
|
|
7
7
|
display: flex;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use "variables.scss";
|
|
2
2
|
|
|
3
3
|
#document-pages {
|
|
4
|
-
background:
|
|
4
|
+
background: variables.$background;
|
|
5
5
|
min-width: 80px;
|
|
6
6
|
overflow-y: auto;
|
|
7
|
-
font-family:
|
|
7
|
+
font-family: variables.$font-family;
|
|
8
8
|
height: 100%;
|
|
9
|
-
border-right:
|
|
9
|
+
border-right: variables.$component-border;
|
|
10
10
|
|
|
11
11
|
.document-thumbnail {
|
|
12
12
|
text-align: center;
|
|
@@ -19,11 +19,11 @@
|
|
|
19
19
|
justify-content: center;
|
|
20
20
|
|
|
21
21
|
.img-thumbnail {
|
|
22
|
-
border: 1px solid
|
|
22
|
+
border: 1px solid variables.$grey-detail;
|
|
23
23
|
border-radius: 4px;
|
|
24
24
|
|
|
25
25
|
&.selected {
|
|
26
|
-
border: 2px solid
|
|
26
|
+
border: 2px solid variables.$primary;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
img {
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
.number-thumbnail {
|
|
36
|
-
color:
|
|
36
|
+
color: variables.$text-lighter;
|
|
37
37
|
font-size: 12px;
|
|
38
38
|
margin-top: 4px;
|
|
39
39
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use "variables.scss";
|
|
2
2
|
|
|
3
3
|
#toolbar-container {
|
|
4
4
|
position: absolute;
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
margin: 0 auto;
|
|
10
10
|
|
|
11
11
|
.toolbar {
|
|
12
|
-
background-color:
|
|
12
|
+
background-color: variables.$toolbar;
|
|
13
13
|
height: 40px;
|
|
14
14
|
width: fit-content;
|
|
15
15
|
border-radius: 8px;
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
|
|
37
37
|
.toolbar-divider {
|
|
38
38
|
width: 1px;
|
|
39
|
-
background-color:
|
|
39
|
+
background-color: variables.$grey-detail;
|
|
40
40
|
height: 20px;
|
|
41
41
|
margin-left: 10px;
|
|
42
42
|
margin-right: 10px;
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
|
|
50
50
|
.icon {
|
|
51
51
|
svg {
|
|
52
|
-
fill:
|
|
52
|
+
fill: variables.$toolbar-elements;
|
|
53
53
|
}
|
|
54
54
|
}
|
|
55
55
|
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
|
|
59
59
|
&:hover {
|
|
60
60
|
cursor: pointer;
|
|
61
|
-
background:
|
|
61
|
+
background: variables.$low-opacity-white;
|
|
62
62
|
border-radius: 4px;
|
|
63
63
|
}
|
|
64
64
|
|
|
@@ -72,12 +72,12 @@
|
|
|
72
72
|
}
|
|
73
73
|
|
|
74
74
|
.edit-text {
|
|
75
|
-
color:
|
|
75
|
+
color: variables.$toolbar-elements;
|
|
76
76
|
}
|
|
77
77
|
}
|
|
78
78
|
|
|
79
79
|
.percentage {
|
|
80
|
-
color:
|
|
80
|
+
color: variables.$toolbar-elements;
|
|
81
81
|
width: 32px;
|
|
82
82
|
padding: 7px;
|
|
83
83
|
margin-right: 20px;
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
|
|
90
90
|
&:hover:not(.edit-icon) {
|
|
91
91
|
cursor: pointer;
|
|
92
|
-
background:
|
|
92
|
+
background: variables.$low-opacity-white;
|
|
93
93
|
border-radius: 4px;
|
|
94
94
|
}
|
|
95
95
|
}
|
|
@@ -97,10 +97,10 @@
|
|
|
97
97
|
|
|
98
98
|
.download-file,
|
|
99
99
|
.search-icon {
|
|
100
|
-
color:
|
|
100
|
+
color: variables.$toolbar-elements;
|
|
101
101
|
|
|
102
102
|
.is-active {
|
|
103
|
-
background:
|
|
103
|
+
background: variables.$low-opacity-white;
|
|
104
104
|
border-radius: 4px;
|
|
105
105
|
|
|
106
106
|
.icon:hover {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use "variables.scss";
|
|
2
2
|
|
|
3
3
|
#document-top-bar-component {
|
|
4
4
|
width: 100%;
|
|
5
|
-
height:
|
|
6
|
-
border-bottom:
|
|
5
|
+
height: variables.$top-bar-height;
|
|
6
|
+
border-bottom: variables.$component-border;
|
|
7
7
|
|
|
8
8
|
.loading-top-bar {
|
|
9
9
|
height: 100%;
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
.document-top-bar {
|
|
15
15
|
width: 100%;
|
|
16
16
|
height: 100%;
|
|
17
|
-
background-color:
|
|
17
|
+
background-color: variables.$top-bar-background;
|
|
18
18
|
position: sticky;
|
|
19
19
|
z-index: 39;
|
|
20
20
|
display: flex;
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
flex: 1;
|
|
24
24
|
top: 0;
|
|
25
25
|
font-size: 14px;
|
|
26
|
-
color:
|
|
26
|
+
color: variables.$text-color;
|
|
27
27
|
font-weight: 400px;
|
|
28
28
|
|
|
29
29
|
.left-bar-components {
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
flex: 1;
|
|
33
33
|
|
|
34
34
|
.app-info {
|
|
35
|
-
color:
|
|
35
|
+
color: variables.$grey;
|
|
36
36
|
display: flex;
|
|
37
37
|
align-items: center;
|
|
38
38
|
padding: 12px 16px;
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
align-items: center;
|
|
75
75
|
justify-content: flex-end;
|
|
76
76
|
padding-right: 24px;
|
|
77
|
-
color:
|
|
77
|
+
color: variables.$text-lighter;
|
|
78
78
|
font-size: 14px;
|
|
79
79
|
line-height: 20px;
|
|
80
80
|
font-weight: 400;
|
|
@@ -85,12 +85,12 @@
|
|
|
85
85
|
vertical-align: text-top;
|
|
86
86
|
|
|
87
87
|
&.info-reviewed {
|
|
88
|
-
color:
|
|
88
|
+
color: variables.$primary;
|
|
89
89
|
}
|
|
90
90
|
}
|
|
91
91
|
|
|
92
92
|
.doc-reviewed {
|
|
93
|
-
color:
|
|
93
|
+
color: variables.$primary;
|
|
94
94
|
}
|
|
95
95
|
|
|
96
96
|
.read-only-details {
|
|
@@ -121,7 +121,7 @@
|
|
|
121
121
|
|
|
122
122
|
.tooltip-divider {
|
|
123
123
|
width: 1px;
|
|
124
|
-
background-color:
|
|
124
|
+
background-color: variables.$grey-detail;
|
|
125
125
|
height: 15px;
|
|
126
126
|
margin-top: 3px;
|
|
127
127
|
opacity: 30%;
|
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
font-weight: 500;
|
|
133
133
|
display: flex;
|
|
134
134
|
align-items: center;
|
|
135
|
-
background-color:
|
|
135
|
+
background-color: variables.$low-opacity-white;
|
|
136
136
|
border-radius: 4px;
|
|
137
137
|
padding: 0 5px 0 5px;
|
|
138
138
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use "variables.scss";
|
|
2
2
|
|
|
3
3
|
.viewport-modal {
|
|
4
4
|
text-align: center;
|
|
@@ -8,12 +8,12 @@
|
|
|
8
8
|
font-weight: 600 !important;
|
|
9
9
|
font-size: 20px !important;
|
|
10
10
|
line-height: 26px !important;
|
|
11
|
-
color:
|
|
11
|
+
color: variables.$text-color !important;
|
|
12
12
|
padding-bottom: 5px;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
p {
|
|
16
|
-
color:
|
|
16
|
+
color: variables.$grey;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
p,
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
@
|
|
2
|
-
$documents-list-height: 52px;
|
|
1
|
+
@use "variables.scss";
|
|
3
2
|
|
|
4
3
|
.documents-list {
|
|
5
|
-
background-color:
|
|
6
|
-
font-family:
|
|
4
|
+
background-color: variables.$background;
|
|
5
|
+
font-family: variables.$font-family;
|
|
7
6
|
|
|
8
7
|
.documents-list-top {
|
|
9
8
|
display: flex;
|
|
@@ -16,7 +15,7 @@ $documents-list-height: 52px;
|
|
|
16
15
|
|
|
17
16
|
h2 {
|
|
18
17
|
font-size: 26px;
|
|
19
|
-
color:
|
|
18
|
+
color: variables.$text;
|
|
20
19
|
font-weight: 600;
|
|
21
20
|
line-height: 33px;
|
|
22
21
|
margin: 0;
|
|
@@ -24,7 +23,7 @@ $documents-list-height: 52px;
|
|
|
24
23
|
|
|
25
24
|
p {
|
|
26
25
|
font-size: 14px;
|
|
27
|
-
color:
|
|
26
|
+
color: variables.$text-lighter;
|
|
28
27
|
font-weight: 400;
|
|
29
28
|
line-height: 20px;
|
|
30
29
|
margin: 16px 0 0 0;
|
|
@@ -53,7 +52,7 @@ $documents-list-height: 52px;
|
|
|
53
52
|
content: "";
|
|
54
53
|
width: 100%;
|
|
55
54
|
height: 100%;
|
|
56
|
-
background:
|
|
55
|
+
background: variables.$primary;
|
|
57
56
|
opacity: 0.1;
|
|
58
57
|
position: absolute;
|
|
59
58
|
top: 0;
|
|
@@ -65,7 +64,7 @@ $documents-list-height: 52px;
|
|
|
65
64
|
font-weight: 600;
|
|
66
65
|
font-size: 16px;
|
|
67
66
|
line-height: 24px;
|
|
68
|
-
color:
|
|
67
|
+
color: variables.$text;
|
|
69
68
|
}
|
|
70
69
|
|
|
71
70
|
.action-button {
|
|
@@ -84,7 +83,7 @@ $documents-list-height: 52px;
|
|
|
84
83
|
.documents-list-bottom {
|
|
85
84
|
display: flex;
|
|
86
85
|
flex-direction: row;
|
|
87
|
-
border-bottom:
|
|
86
|
+
border-bottom: variables.$component-border;
|
|
88
87
|
|
|
89
88
|
.documents-list-thumbnail {
|
|
90
89
|
cursor: pointer;
|
|
@@ -93,7 +92,7 @@ $documents-list-height: 52px;
|
|
|
93
92
|
flex-direction: row;
|
|
94
93
|
justify-content: center;
|
|
95
94
|
align-items: center;
|
|
96
|
-
height:
|
|
95
|
+
height: variables.$documents-list-height;
|
|
97
96
|
padding: 8px;
|
|
98
97
|
|
|
99
98
|
&.selected {
|
|
@@ -101,7 +100,7 @@ $documents-list-height: 52px;
|
|
|
101
100
|
box-sizing: border-box;
|
|
102
101
|
-moz-box-sizing: border-box;
|
|
103
102
|
-webkit-box-sizing: border-box;
|
|
104
|
-
border-bottom: 3px solid
|
|
103
|
+
border-bottom: 3px solid variables.$primary;
|
|
105
104
|
}
|
|
106
105
|
|
|
107
106
|
.img-thumbnail {
|
|
@@ -112,7 +111,7 @@ $documents-list-height: 52px;
|
|
|
112
111
|
}
|
|
113
112
|
|
|
114
113
|
&.selected {
|
|
115
|
-
outline: 1px solid
|
|
114
|
+
outline: 1px solid variables.$dark;
|
|
116
115
|
}
|
|
117
116
|
}
|
|
118
117
|
|