@konfuzio/document-validation-ui 0.1.59-dev.3 → 0.1.60-dev.0
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 +23 -66
- package/dist/js/chunk-vendors.js.map +1 -1
- package/jest.config.js +2 -22
- package/package.json +38 -32
- package/src/api.js +12 -0
- package/src/assets/scss/ann_set_table_options.scss +4 -4
- package/src/assets/scss/annotation_action_buttons.scss +7 -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 +43 -45
- package/src/assets/scss/document_category.scss +8 -8
- package/src/assets/scss/document_dashboard.scss +1 -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 +12 -11
- 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/imports.scss +1 -0
- 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 +19 -25
- package/src/assets/scss/scrolling_document.scss +1 -1
- package/src/assets/scss/theme.scss +52 -64
- package/src/assets/scss/variables.scss +0 -2
- package/src/components/App.vue +14 -9
- package/src/components/DocumentAnnotations/AnnotationActionButtons.vue +6 -4
- package/src/components/DocumentAnnotations/AnnotationContent.vue +52 -25
- package/src/components/DocumentAnnotations/AnnotationRow.vue +50 -106
- package/src/components/DocumentAnnotations/DocumentAnnotations.vue +6 -12
- package/src/components/DocumentAnnotations/EmptyAnnotation.vue +70 -31
- package/src/components/DocumentDashboard.vue +17 -12
- package/src/components/DocumentEdit/EditPages.vue +46 -51
- package/src/components/DocumentPage/BoxSelection.vue +49 -16
- package/src/components/DocumentPage/DocumentPage.vue +153 -56
- package/src/components/DocumentPage/DocumentToolbar.vue +15 -5
- package/src/components/DocumentPage/EditAnnotation.vue +372 -0
- package/src/components/DocumentPage/{AnnotationPopup.vue → NewAnnotation.vue} +94 -122
- package/src/components/DocumentPage/ScrollingPage.vue +10 -2
- package/src/components/DocumentThumbnails/LoadingThumbnail.vue +6 -3
- package/src/components/DocumentTopBar/DocumentTopBar.vue +2 -4
- package/src/constants.js +7 -1
- package/src/i18n.js +5 -2
- package/src/main.js +16 -14
- package/src/store/display.js +24 -38
- package/src/store/document.js +6 -1
- package/src/store/index.js +8 -5
- package/src/store/selection.js +76 -152
- package/src/components/DocumentPage/PlaceholderSelection.vue +0 -51
- package/src/components/DocumentPage/SpanSelection.vue +0 -259
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
@
|
|
1
|
+
@import "./imports.scss";
|
|
2
2
|
|
|
3
3
|
#document-edit {
|
|
4
4
|
display: flex;
|
|
5
|
-
background-color:
|
|
5
|
+
background-color: $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: $component-border;
|
|
14
|
+
border-left: $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: $background;
|
|
22
|
+
border-bottom: $component-border;
|
|
23
23
|
display: flex;
|
|
24
24
|
align-items: center;
|
|
25
25
|
|
|
26
26
|
.header-title {
|
|
27
|
-
color:
|
|
27
|
+
color: $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: $text-lighter;
|
|
61
61
|
font-size: 12px;
|
|
62
62
|
line-height: 12px;
|
|
63
63
|
font-weight: 400;
|
|
@@ -109,7 +109,8 @@
|
|
|
109
109
|
|
|
110
110
|
&:last-child {
|
|
111
111
|
.splitting-lines {
|
|
112
|
-
|
|
112
|
+
visibility: hidden;
|
|
113
|
+
pointer-events: none;
|
|
113
114
|
}
|
|
114
115
|
.page-number {
|
|
115
116
|
padding-right: 0px;
|
|
@@ -137,8 +138,8 @@
|
|
|
137
138
|
align-items: center;
|
|
138
139
|
justify-content: center;
|
|
139
140
|
gap: 3px;
|
|
140
|
-
background-color:
|
|
141
|
-
color:
|
|
141
|
+
background-color: $text-color;
|
|
142
|
+
color: $white;
|
|
142
143
|
font-weight: 400;
|
|
143
144
|
font-size: 14px;
|
|
144
145
|
border-radius: 52px;
|
|
@@ -151,7 +152,7 @@
|
|
|
151
152
|
width: 45%;
|
|
152
153
|
max-width: 300px;
|
|
153
154
|
min-width: 270px;
|
|
154
|
-
background-color:
|
|
155
|
+
background-color: $background;
|
|
155
156
|
|
|
156
157
|
.edit-sidebar {
|
|
157
158
|
display: flex;
|
|
@@ -165,7 +166,7 @@
|
|
|
165
166
|
width: 85%;
|
|
166
167
|
display: flex;
|
|
167
168
|
flex-direction: column;
|
|
168
|
-
color:
|
|
169
|
+
color: $grey-dark;
|
|
169
170
|
|
|
170
171
|
.pages-selected {
|
|
171
172
|
font-weight: 400;
|
|
@@ -173,7 +174,7 @@
|
|
|
173
174
|
margin-bottom: 15px;
|
|
174
175
|
|
|
175
176
|
&.disabled {
|
|
176
|
-
color:
|
|
177
|
+
color: $grey;
|
|
177
178
|
}
|
|
178
179
|
}
|
|
179
180
|
|
|
@@ -181,7 +182,7 @@
|
|
|
181
182
|
display: flex;
|
|
182
183
|
flex-direction: column;
|
|
183
184
|
gap: 8px;
|
|
184
|
-
border-bottom: 1px solid
|
|
185
|
+
border-bottom: 1px solid $grey-detail;
|
|
185
186
|
|
|
186
187
|
.sidebar-buttons {
|
|
187
188
|
.edit-mode-btn {
|
|
@@ -230,7 +231,7 @@
|
|
|
230
231
|
.switch-text {
|
|
231
232
|
font-size: 14px;
|
|
232
233
|
padding-right: 10px;
|
|
233
|
-
color:
|
|
234
|
+
color: $grey-dark;
|
|
234
235
|
font-weight: 500;
|
|
235
236
|
}
|
|
236
237
|
}
|
|
@@ -241,7 +242,7 @@
|
|
|
241
242
|
font-weight: 700;
|
|
242
243
|
font-size: 11px;
|
|
243
244
|
padding: 5px;
|
|
244
|
-
color:
|
|
245
|
+
color: $text-color;
|
|
245
246
|
}
|
|
246
247
|
}
|
|
247
248
|
}
|
|
@@ -261,7 +262,7 @@
|
|
|
261
262
|
}
|
|
262
263
|
|
|
263
264
|
&.rename-and-categorize-component {
|
|
264
|
-
background-color:
|
|
265
|
+
background-color: $background;
|
|
265
266
|
min-width: 600px;
|
|
266
267
|
|
|
267
268
|
.rename-and-categorize-section {
|
|
@@ -291,7 +292,7 @@
|
|
|
291
292
|
}
|
|
292
293
|
|
|
293
294
|
.back-text {
|
|
294
|
-
color:
|
|
295
|
+
color: $grey;
|
|
295
296
|
font-weight: 400;
|
|
296
297
|
font-size: 14px;
|
|
297
298
|
line-height: 20px;
|
|
@@ -299,7 +300,7 @@
|
|
|
299
300
|
}
|
|
300
301
|
|
|
301
302
|
.rename-and-categorize-title {
|
|
302
|
-
color:
|
|
303
|
+
color: $text-color;
|
|
303
304
|
font-size: 16px;
|
|
304
305
|
font-weight: 600;
|
|
305
306
|
}
|
|
@@ -332,15 +333,14 @@
|
|
|
332
333
|
justify-content: center;
|
|
333
334
|
|
|
334
335
|
.page-thumbnail {
|
|
335
|
-
border:
|
|
336
|
+
border: $component-border;
|
|
336
337
|
border-radius: 2px;
|
|
337
338
|
}
|
|
338
339
|
|
|
339
340
|
&.page-stack {
|
|
340
341
|
.page-thumbnail {
|
|
341
|
-
box-shadow: 2px 2px
|
|
342
|
-
|
|
343
|
-
6px 6px variables.$detail;
|
|
342
|
+
box-shadow: 2px 2px $white, 3px 3px $detail,
|
|
343
|
+
5px 5px $white, 6px 6px $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: $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 $grey-outline;
|
|
387
387
|
border-right: 0;
|
|
388
|
-
background-color:
|
|
388
|
+
background-color: $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 $grey-outline;
|
|
399
|
+
background-color: $white;
|
|
400
|
+
color: $grey-blue;
|
|
401
401
|
}
|
|
402
402
|
}
|
|
403
403
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@
|
|
1
|
+
@import "./imports.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: $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: $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: $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: $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: $white;
|
|
67
67
|
border-radius: 0 0 12px 12px;
|
|
68
68
|
padding-top: 0 !important;
|
|
69
69
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@
|
|
1
|
+
@import "./imports.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 $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 $grey-outline;
|
|
32
32
|
}
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
.btn {
|
|
36
|
-
color:
|
|
36
|
+
color: $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: $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: $grey;
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
.cloud-icon {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@
|
|
1
|
+
@import "./imports.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: $text-color;
|
|
17
|
+
color: $white;
|
|
18
18
|
font-size: 12px;
|
|
19
19
|
padding: 4px;
|
|
20
20
|
word-break: break-all;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@
|
|
1
|
+
@import "./imports.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: $searchbar;
|
|
11
|
+
color: $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: $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: $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: $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: $text-lighter;
|
|
69
69
|
}
|
|
70
70
|
}
|
|
71
71
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
@
|
|
1
|
+
@import "./imports.scss";
|
|
2
2
|
.document-set-dropdown {
|
|
3
|
-
border-right:
|
|
4
|
-
border-left:
|
|
3
|
+
border-right: $component-border;
|
|
4
|
+
border-left: $component-border;
|
|
5
5
|
|
|
6
6
|
.dropdown-doc-set {
|
|
7
7
|
display: flex;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
@
|
|
1
|
+
@import "./imports.scss";
|
|
2
2
|
|
|
3
3
|
#document-pages {
|
|
4
|
-
background:
|
|
4
|
+
background: $background;
|
|
5
5
|
min-width: 80px;
|
|
6
6
|
overflow-y: auto;
|
|
7
|
-
font-family:
|
|
7
|
+
font-family: $font-family;
|
|
8
8
|
height: 100%;
|
|
9
|
-
border-right:
|
|
9
|
+
border-right: $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 $grey-detail;
|
|
23
23
|
border-radius: 4px;
|
|
24
24
|
|
|
25
25
|
&.selected {
|
|
26
|
-
border: 2px solid
|
|
26
|
+
border: 2px solid $primary;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
img {
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
.number-thumbnail {
|
|
36
|
-
color:
|
|
36
|
+
color: $text-lighter;
|
|
37
37
|
font-size: 12px;
|
|
38
38
|
margin-top: 4px;
|
|
39
39
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@
|
|
1
|
+
@import "./imports.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: $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: $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: $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: $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: $toolbar-elements;
|
|
76
76
|
}
|
|
77
77
|
}
|
|
78
78
|
|
|
79
79
|
.percentage {
|
|
80
|
-
color:
|
|
80
|
+
color: $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: $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: $toolbar-elements;
|
|
101
101
|
|
|
102
102
|
.is-active {
|
|
103
|
-
background:
|
|
103
|
+
background: $low-opacity-white;
|
|
104
104
|
border-radius: 4px;
|
|
105
105
|
|
|
106
106
|
.icon:hover {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
@
|
|
1
|
+
@import "./imports.scss";
|
|
2
2
|
|
|
3
3
|
#document-top-bar-component {
|
|
4
4
|
width: 100%;
|
|
5
|
-
height:
|
|
6
|
-
border-bottom:
|
|
5
|
+
height: $top-bar-height;
|
|
6
|
+
border-bottom: $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: $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: $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: $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: $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: $primary;
|
|
89
89
|
}
|
|
90
90
|
}
|
|
91
91
|
|
|
92
92
|
.doc-reviewed {
|
|
93
|
-
color:
|
|
93
|
+
color: $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: $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: $low-opacity-white;
|
|
136
136
|
border-radius: 4px;
|
|
137
137
|
padding: 0 5px 0 5px;
|
|
138
138
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@
|
|
1
|
+
@import "./imports.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: $text-color !important;
|
|
12
12
|
padding-bottom: 5px;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
p {
|
|
16
|
-
color:
|
|
16
|
+
color: $grey;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
p,
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
@
|
|
1
|
+
@import "./imports.scss";
|
|
2
|
+
$documents-list-height: 52px;
|
|
2
3
|
|
|
3
4
|
.documents-list {
|
|
4
|
-
background-color:
|
|
5
|
-
font-family:
|
|
5
|
+
background-color: $background;
|
|
6
|
+
font-family: $font-family;
|
|
6
7
|
|
|
7
8
|
.documents-list-top {
|
|
8
9
|
display: flex;
|
|
@@ -15,7 +16,7 @@
|
|
|
15
16
|
|
|
16
17
|
h2 {
|
|
17
18
|
font-size: 26px;
|
|
18
|
-
color:
|
|
19
|
+
color: $text;
|
|
19
20
|
font-weight: 600;
|
|
20
21
|
line-height: 33px;
|
|
21
22
|
margin: 0;
|
|
@@ -23,7 +24,7 @@
|
|
|
23
24
|
|
|
24
25
|
p {
|
|
25
26
|
font-size: 14px;
|
|
26
|
-
color:
|
|
27
|
+
color: $text-lighter;
|
|
27
28
|
font-weight: 400;
|
|
28
29
|
line-height: 20px;
|
|
29
30
|
margin: 16px 0 0 0;
|
|
@@ -52,7 +53,7 @@
|
|
|
52
53
|
content: "";
|
|
53
54
|
width: 100%;
|
|
54
55
|
height: 100%;
|
|
55
|
-
background:
|
|
56
|
+
background: $primary;
|
|
56
57
|
opacity: 0.1;
|
|
57
58
|
position: absolute;
|
|
58
59
|
top: 0;
|
|
@@ -64,7 +65,7 @@
|
|
|
64
65
|
font-weight: 600;
|
|
65
66
|
font-size: 16px;
|
|
66
67
|
line-height: 24px;
|
|
67
|
-
color:
|
|
68
|
+
color: $text;
|
|
68
69
|
}
|
|
69
70
|
|
|
70
71
|
.action-button {
|
|
@@ -83,7 +84,7 @@
|
|
|
83
84
|
.documents-list-bottom {
|
|
84
85
|
display: flex;
|
|
85
86
|
flex-direction: row;
|
|
86
|
-
border-bottom:
|
|
87
|
+
border-bottom: $component-border;
|
|
87
88
|
|
|
88
89
|
.documents-list-thumbnail {
|
|
89
90
|
cursor: pointer;
|
|
@@ -92,7 +93,7 @@
|
|
|
92
93
|
flex-direction: row;
|
|
93
94
|
justify-content: center;
|
|
94
95
|
align-items: center;
|
|
95
|
-
height:
|
|
96
|
+
height: $documents-list-height;
|
|
96
97
|
padding: 8px;
|
|
97
98
|
|
|
98
99
|
&.selected {
|
|
@@ -100,7 +101,7 @@
|
|
|
100
101
|
box-sizing: border-box;
|
|
101
102
|
-moz-box-sizing: border-box;
|
|
102
103
|
-webkit-box-sizing: border-box;
|
|
103
|
-
border-bottom: 3px solid
|
|
104
|
+
border-bottom: 3px solid $primary;
|
|
104
105
|
}
|
|
105
106
|
|
|
106
107
|
.img-thumbnail {
|
|
@@ -111,7 +112,7 @@
|
|
|
111
112
|
}
|
|
112
113
|
|
|
113
114
|
&.selected {
|
|
114
|
-
outline: 1px solid
|
|
115
|
+
outline: 1px solid $dark;
|
|
115
116
|
}
|
|
116
117
|
}
|
|
117
118
|
|