@djb25/digit-ui-css 1.0.41 → 1.0.43
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/dist/index.css +1 -1
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/SearchForm.scss +9 -15
- package/src/components/TimeLine.scss +6 -6
- package/src/components/VerticalTimeline.scss +8 -8
- package/src/components/body.scss +13 -5
- package/src/components/buttons.scss +3 -3
- package/src/components/card.scss +4 -4
- package/src/components/financeUi.scss +9 -15
- package/src/components/inboxv2/InboxLinks.scss +53 -53
- package/src/components/inboxv2/inboxSearchComposer.scss +112 -111
- package/src/components/juridictions.scss +4 -0
- package/src/components/landingpage.scss +4 -4
- package/src/components/moduleHeader.scss +1 -1
- package/src/components/selectdropdown.scss +10 -1
- package/src/components/table.scss +2 -2
- package/src/components/toast.scss +1 -1
- package/src/components/topbar.scss +28 -6
- package/src/digitv2/pages/employee/workbench.scss +7 -7
- package/src/index.scss +35 -1
- package/src/pages/citizen/Register.scss +1 -1
- package/src/pages/employee/ekyc.scss +168 -168
- package/src/pages/employee/inbox.scss +4 -3
- package/src/pages/employee/index.scss +11 -0
- package/svg/check.svg +1 -1
- package/svg/close.svg +1 -1
- package/svg/error2.svg +1 -1
- package/svg/starempty.svg +1 -1
- package/svg/starfilled.svg +1 -1
- package/svg/success.svg +1 -1
|
@@ -1,191 +1,191 @@
|
|
|
1
1
|
.ekyc-employee-container {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
.inbox-main-container {
|
|
3
|
+
flex: 1;
|
|
4
|
+
padding-right: -24px;
|
|
5
|
+
border-radius: 12px;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.inbox-wrapper {
|
|
9
|
+
min-width: 100%;
|
|
10
|
+
padding: 24px;
|
|
11
|
+
border-radius: 12px;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.ekyc-header-container {
|
|
15
|
+
display: flex;
|
|
16
|
+
justify-content: space-between;
|
|
17
|
+
align-items: center;
|
|
18
|
+
margin-bottom: 24px;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.ekyc-status-container {
|
|
22
|
+
display: flex;
|
|
23
|
+
gap: 24px;
|
|
24
|
+
margin-bottom: 32px;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.ekyc-status-card {
|
|
28
|
+
flex: 1;
|
|
29
|
+
text-align: center;
|
|
30
|
+
padding: 8px 24px;
|
|
31
|
+
border-right: 1px solid #eaecf0;
|
|
32
|
+
|
|
33
|
+
&:last-child {
|
|
34
|
+
border-right: none;
|
|
6
35
|
}
|
|
7
36
|
|
|
8
|
-
.
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
37
|
+
.count {
|
|
38
|
+
font-size: 32px;
|
|
39
|
+
font-weight: 700;
|
|
40
|
+
color: #101828;
|
|
41
|
+
|
|
42
|
+
&.pending {
|
|
43
|
+
color: #b54708;
|
|
44
|
+
}
|
|
13
45
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
align-items: center;
|
|
18
|
-
margin-bottom: 24px;
|
|
46
|
+
&.completed {
|
|
47
|
+
color: #027a48;
|
|
48
|
+
}
|
|
19
49
|
}
|
|
20
50
|
|
|
21
|
-
.
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
51
|
+
.label {
|
|
52
|
+
color: #667085;
|
|
53
|
+
margin-top: 8px;
|
|
54
|
+
font-size: 14px;
|
|
55
|
+
font-weight: 500;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.ekyc-search-card {
|
|
60
|
+
margin-bottom: 24px;
|
|
61
|
+
padding: 20px;
|
|
62
|
+
background-color: #fff;
|
|
63
|
+
border-radius: 12px;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.ekyc-search-container {
|
|
67
|
+
width: 100%;
|
|
68
|
+
flex: 1;
|
|
69
|
+
|
|
70
|
+
.search-inner {
|
|
71
|
+
padding: 0px;
|
|
72
|
+
background-color: #fff;
|
|
73
|
+
border: none;
|
|
25
74
|
}
|
|
26
75
|
|
|
27
|
-
.
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
&:last-child {
|
|
34
|
-
border-right: none;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.count {
|
|
38
|
-
font-size: 32px;
|
|
39
|
-
font-weight: 700;
|
|
40
|
-
color: #101828;
|
|
41
|
-
|
|
42
|
-
&.pending {
|
|
43
|
-
color: #B54708;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
&.completed {
|
|
47
|
-
color: #027A48;
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
.label {
|
|
52
|
-
color: #667085;
|
|
53
|
-
margin-top: 8px;
|
|
54
|
-
font-size: 14px;
|
|
55
|
-
font-weight: 500;
|
|
56
|
-
}
|
|
76
|
+
.search-field-wrapper {
|
|
77
|
+
display: flex;
|
|
78
|
+
align-items: flex-end;
|
|
79
|
+
gap: 24px;
|
|
80
|
+
width: 100%;
|
|
57
81
|
}
|
|
58
82
|
|
|
59
|
-
.
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
83
|
+
.search-fields-container {
|
|
84
|
+
display: flex;
|
|
85
|
+
flex-wrap: wrap;
|
|
86
|
+
gap: 24px;
|
|
87
|
+
flex: 1;
|
|
64
88
|
}
|
|
65
89
|
|
|
66
|
-
.
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
gap: 24px;
|
|
87
|
-
flex: 1;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
.search-field {
|
|
91
|
-
display: flex;
|
|
92
|
-
flex-direction: column;
|
|
93
|
-
gap: 8px;
|
|
94
|
-
min-width: 250px;
|
|
95
|
-
flex: 1;
|
|
96
|
-
|
|
97
|
-
label {
|
|
98
|
-
margin-bottom: 0 !important;
|
|
99
|
-
margin-top: 20px !important;
|
|
100
|
-
font-size: 16px !important;
|
|
101
|
-
font-weight: 600 !important;
|
|
102
|
-
color: #344054 !important;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
input,
|
|
106
|
-
.dropdown-wrapper {
|
|
107
|
-
border-radius: 12px !important;
|
|
108
|
-
height: 40px !important;
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
.search-action-container {
|
|
113
|
-
display: flex;
|
|
114
|
-
align-items: center;
|
|
115
|
-
gap: 20px;
|
|
116
|
-
margin-left: auto;
|
|
117
|
-
padding-bottom: 4px;
|
|
118
|
-
|
|
119
|
-
.submit-bar {
|
|
120
|
-
height: 40px !important;
|
|
121
|
-
padding: 0 24px !important;
|
|
122
|
-
margin-bottom: 0 !important;
|
|
123
|
-
border-radius: 12px !important;
|
|
124
|
-
position: relative !important;
|
|
125
|
-
top: -20px !important;
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
.link-label {
|
|
129
|
-
margin: 0 !important;
|
|
130
|
-
font-weight: 600 !important;
|
|
131
|
-
cursor: pointer !important;
|
|
132
|
-
white-space: nowrap !important;
|
|
133
|
-
position: relative !important;
|
|
134
|
-
top: -20px !important;
|
|
135
|
-
color: #F47738 !important;
|
|
136
|
-
}
|
|
137
|
-
}
|
|
90
|
+
.search-field {
|
|
91
|
+
display: flex;
|
|
92
|
+
flex-direction: column;
|
|
93
|
+
gap: 8px;
|
|
94
|
+
min-width: 250px;
|
|
95
|
+
flex: 1;
|
|
96
|
+
|
|
97
|
+
label {
|
|
98
|
+
margin-bottom: 0 !important;
|
|
99
|
+
margin-top: 20px !important;
|
|
100
|
+
font-size: 16px !important;
|
|
101
|
+
font-weight: 600 !important;
|
|
102
|
+
color: #344054 !important;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
input,
|
|
106
|
+
.dropdown-wrapper {
|
|
107
|
+
border-radius: 12px !important;
|
|
108
|
+
height: 40px !important;
|
|
109
|
+
}
|
|
138
110
|
}
|
|
139
111
|
|
|
140
|
-
.
|
|
141
|
-
|
|
142
|
-
|
|
112
|
+
.search-action-container {
|
|
113
|
+
display: flex;
|
|
114
|
+
align-items: center;
|
|
115
|
+
gap: 20px;
|
|
116
|
+
margin-left: auto;
|
|
117
|
+
padding-bottom: 4px;
|
|
118
|
+
|
|
119
|
+
.submit-bar {
|
|
120
|
+
height: 40px !important;
|
|
121
|
+
padding: 0 24px !important;
|
|
122
|
+
margin-bottom: 0 !important;
|
|
123
|
+
border-radius: 12px !important;
|
|
124
|
+
position: relative !important;
|
|
125
|
+
top: -20px !important;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.link-label {
|
|
129
|
+
margin: 0 !important;
|
|
130
|
+
font-weight: 600 !important;
|
|
131
|
+
cursor: pointer !important;
|
|
132
|
+
white-space: nowrap !important;
|
|
133
|
+
position: relative !important;
|
|
134
|
+
top: -20px !important;
|
|
135
|
+
color: #3a8dcc !important;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.ekyc-table-card {
|
|
141
|
+
padding: 0px;
|
|
142
|
+
overflow: hidden;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.ekyc-status-tag {
|
|
146
|
+
padding: 6px 12px;
|
|
147
|
+
border-radius: 20px;
|
|
148
|
+
font-size: 12px;
|
|
149
|
+
font-weight: 600;
|
|
150
|
+
text-transform: uppercase;
|
|
151
|
+
|
|
152
|
+
&.ALL {
|
|
153
|
+
background-color: #f4f4f4;
|
|
154
|
+
color: #505a5f;
|
|
143
155
|
}
|
|
144
156
|
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
font-size: 12px;
|
|
149
|
-
font-weight: 600;
|
|
150
|
-
text-transform: uppercase;
|
|
151
|
-
|
|
152
|
-
&.ALL {
|
|
153
|
-
background-color: #F4F4F4;
|
|
154
|
-
color: #505A5F;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
&.COMPLETED {
|
|
158
|
-
background-color: #E7F4E9;
|
|
159
|
-
color: #0B6623;
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
&.PENDING {
|
|
163
|
-
background-color: #FFF5E6;
|
|
164
|
-
color: #945700;
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
&.REJECTED {
|
|
168
|
-
background-color: #FBEAE9;
|
|
169
|
-
color: #AF1E11;
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
&.DEFAULT {
|
|
173
|
-
background-color: #F4F4F4;
|
|
174
|
-
color: #505A5F;
|
|
175
|
-
}
|
|
157
|
+
&.COMPLETED {
|
|
158
|
+
background-color: #e7f4e9;
|
|
159
|
+
color: #0b6623;
|
|
176
160
|
}
|
|
177
161
|
|
|
178
|
-
|
|
179
|
-
|
|
162
|
+
&.PENDING {
|
|
163
|
+
background-color: #fff5e6;
|
|
164
|
+
color: #945700;
|
|
180
165
|
}
|
|
181
166
|
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
167
|
+
&.REJECTED {
|
|
168
|
+
background-color: #fbeae9;
|
|
169
|
+
color: #af1e11;
|
|
185
170
|
}
|
|
186
171
|
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
172
|
+
&.DEFAULT {
|
|
173
|
+
background-color: #f4f4f4;
|
|
174
|
+
color: #505a5f;
|
|
190
175
|
}
|
|
191
|
-
}
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.ekyc-metrics-section {
|
|
179
|
+
margin-bottom: 24px;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.ekyc-table-cell {
|
|
183
|
+
padding: 20px 18px;
|
|
184
|
+
font-size: 16px;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.ekyc-application-link {
|
|
188
|
+
font-weight: 600;
|
|
189
|
+
color: #3a8dcc;
|
|
190
|
+
}
|
|
191
|
+
}
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
|
|
33
33
|
.link {
|
|
34
34
|
@apply p-sm items-center;
|
|
35
|
-
color: #
|
|
35
|
+
color: #0b2e5b !important;
|
|
36
36
|
display: flex !important;
|
|
37
37
|
|
|
38
38
|
a {
|
|
@@ -262,7 +262,8 @@
|
|
|
262
262
|
.clear-search .link-label {
|
|
263
263
|
@apply border-focus text-focus;
|
|
264
264
|
cursor: pointer;
|
|
265
|
-
|
|
265
|
+
min-width: 110px;
|
|
266
|
+
text-align: center;
|
|
266
267
|
&:hover {
|
|
267
268
|
color: #3b59df;
|
|
268
269
|
background-color: #bdc7f3;
|
|
@@ -406,7 +407,7 @@
|
|
|
406
407
|
|
|
407
408
|
.link {
|
|
408
409
|
@apply p-sm;
|
|
409
|
-
color: #
|
|
410
|
+
color: #0b2e5b !important;
|
|
410
411
|
}
|
|
411
412
|
}
|
|
412
413
|
}
|
|
@@ -142,6 +142,17 @@
|
|
|
142
142
|
}
|
|
143
143
|
}
|
|
144
144
|
|
|
145
|
+
.single-page-form-container {
|
|
146
|
+
display: flex;
|
|
147
|
+
flex-direction: column;
|
|
148
|
+
gap: 24px;
|
|
149
|
+
width: 100%;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.form-section-unit {
|
|
153
|
+
width: 100%;
|
|
154
|
+
}
|
|
155
|
+
|
|
145
156
|
.employee-form .citizen {
|
|
146
157
|
.main {
|
|
147
158
|
padding-top: 82px;
|
package/svg/check.svg
CHANGED
package/svg/close.svg
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white" width="18px" height="18px">
|
|
2
|
-
<path d="M0 0h24v24H0V0z" fill="#
|
|
2
|
+
<path d="M0 0h24v24H0V0z" fill="#D83A2F"/>
|
|
3
3
|
<path d="M18.3 5.71c-.39-.39-1.02-.39-1.41 0L12 10.59 7.11 5.7c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41L10.59 12 5.7 16.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 13.41l4.89 4.89c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L13.41 12l4.89-4.89c.38-.38.38-1.02 0-1.4z"/>
|
|
4
4
|
</svg>
|
package/svg/error2.svg
CHANGED
package/svg/starempty.svg
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#3A8DCC" width="48px" height="48px">
|
|
2
2
|
<path d="M0 0h24v24H0V0z" fill="none"/>
|
|
3
3
|
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"/>
|
|
4
4
|
</svg>
|
package/svg/starfilled.svg
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" enableBackground="new 0 0 24 24" viewBox="0 0 24 24" fill="#
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" enableBackground="new 0 0 24 24" viewBox="0 0 24 24" fill="#3A8DCC" width="48px" height="48px" >
|
|
2
2
|
<g><path d="M0,0h24v24H0V0z" fill="none"/>
|
|
3
3
|
<path d="M0,0h24v24H0V0z" fill="none"/></g>
|
|
4
4
|
<g><path d="M12,17.27L18.18,21l-1.64-7.03L22,9.24l-7.19-0.61L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27z"/></g>
|
package/svg/success.svg
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#2E9E8F" >
|
|
2
2
|
<path d="M0 0h24v24H0V0z" fill="none"/>
|
|
3
3
|
<path d="M1 21h4V9H1v12zm22-11c0-1.1-.9-2-2-2h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.59 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2z"/>
|
|
4
4
|
</svg>
|