@entit/digit-ui-css 1.5.6
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 +7724 -0
- package/dist/index.min.css +1 -0
- package/img/browser-icon.png +0 -0
- package/img/m_seva_white_logo.png +0 -0
- package/img/mseva-demo.png +0 -0
- package/package.json +64 -0
- package/src/components/CardBasedOptions.scss +45 -0
- package/src/components/CitizenHomeCard.scss +47 -0
- package/src/components/EllipsisMenu.scss +17 -0
- package/src/components/EventCalendarView.scss +10 -0
- package/src/components/OnGroundEventCard.scss +72 -0
- package/src/components/PageBasedInput.scss +23 -0
- package/src/components/PopupHeadingLabel.scss +15 -0
- package/src/components/PropertySearchForm.scss +58 -0
- package/src/components/SearchForm.scss +56 -0
- package/src/components/SearchOnRadioButton.scss +10 -0
- package/src/components/StandaloneSearchBar.scss +10 -0
- package/src/components/TimeLine.scss +68 -0
- package/src/components/WhatsNewCard.scss +13 -0
- package/src/components/actionLink.scss +3 -0
- package/src/components/actionbar.scss +58 -0
- package/src/components/bannercomponents.scss +131 -0
- package/src/components/body.scss +119 -0
- package/src/components/buttons.scss +47 -0
- package/src/components/card.scss +390 -0
- package/src/components/cardHeaderWithOptions.scss +14 -0
- package/src/components/changeLanguage.scss +3 -0
- package/src/components/charts.scss +186 -0
- package/src/components/checkbox.scss +53 -0
- package/src/components/checkpoint.scss +63 -0
- package/src/components/citizenInfoLabel.scss +14 -0
- package/src/components/custombtn.scss +11 -0
- package/src/components/datatable.scss +72 -0
- package/src/components/datewrap.scss +21 -0
- package/src/components/detailscard.scss +6 -0
- package/src/components/detailscontainer.scss +13 -0
- package/src/components/filters.scss +98 -0
- package/src/components/grey.scss +3 -0
- package/src/components/hoc/InboxComposer.scss +22 -0
- package/src/components/hoc/index.scss +1 -0
- package/src/components/imageviewer.scss +33 -0
- package/src/components/info-banner.scss +34 -0
- package/src/components/inputotp.scss +15 -0
- package/src/components/keynote.scss +27 -0
- package/src/components/languageSelector.scss +23 -0
- package/src/components/loader.scss +96 -0
- package/src/components/map.scss +30 -0
- package/src/components/menu.scss +0 -0
- package/src/components/metricsTable.scss +27 -0
- package/src/components/multiLink.scss +73 -0
- package/src/components/multiSelectDropdown.scss +73 -0
- package/src/components/navbar.scss +110 -0
- package/src/components/popup.scss +16 -0
- package/src/components/radiobtn.scss +45 -0
- package/src/components/ratingstar.scss +33 -0
- package/src/components/roundedLabel.scss +10 -0
- package/src/components/searchAction.scss +20 -0
- package/src/components/sectionalDropdown.scss +43 -0
- package/src/components/selectdropdown.scss +173 -0
- package/src/components/statushighlight.scss +17 -0
- package/src/components/submiterrors.scss +11 -0
- package/src/components/summary.scss +26 -0
- package/src/components/table.scss +167 -0
- package/src/components/tag.scss +27 -0
- package/src/components/telephone.scss +17 -0
- package/src/components/textfields.scss +90 -0
- package/src/components/toast.scss +31 -0
- package/src/components/topbar.scss +134 -0
- package/src/components/uploadcomponents.scss +95 -0
- package/src/index.scss +544 -0
- package/src/pages/citizen/CitizenEngagementNotificationWrapper.scss +5 -0
- package/src/pages/citizen/DocumentList.scss +305 -0
- package/src/pages/citizen/Events.scss +47 -0
- package/src/pages/citizen/HomePageWrapper.scss +99 -0
- package/src/pages/citizen/SurveyList.scss +22 -0
- package/src/pages/citizen/citizenDocument.scss +22 -0
- package/src/pages/citizen/container.scss +19 -0
- package/src/pages/citizen/payment/payment-type.scss +3 -0
- package/src/pages/citizen/updatePropertyNumber.scss +46 -0
- package/src/pages/employee/EmployeeLogin.scss +7 -0
- package/src/pages/employee/cardfix.scss +13 -0
- package/src/pages/employee/container.scss +73 -0
- package/src/pages/employee/dss.scss +116 -0
- package/src/pages/employee/form-fields.scss +13 -0
- package/src/pages/employee/iframe.scss +66 -0
- package/src/pages/employee/inbox.scss +455 -0
- package/src/pages/employee/index.scss +337 -0
- package/src/pages/employee/login.scss +185 -0
- package/src/pages/employee/oldMobileInbox.scss +5 -0
- package/src/pages/employee/popupmodule.scss +34 -0
- package/src/pages/employee/response.scss +3 -0
- package/src/pages/employee/scroll-table.scss +114 -0
- package/src/pages/employee/surveys.scss +273 -0
- package/src/pages/employee/tooltip.scss +36 -0
- package/src/pages/employee/updateNumber.scss +13 -0
- package/svg/arrowdown.svg +1 -0
- package/svg/arrowleft.svg +1 -0
- package/svg/calendar.svg +1 -0
- package/svg/camera.svg +4 -0
- package/svg/check.svg +4 -0
- package/svg/close.svg +4 -0
- package/svg/error.svg +4 -0
- package/svg/error2.svg +5 -0
- package/svg/searchicon.svg +4 -0
- package/svg/starempty.svg +4 -0
- package/svg/starfilled.svg +5 -0
- package/svg/success.svg +4 -0
@@ -0,0 +1,390 @@
|
|
1
|
+
.card {
|
2
|
+
@apply bg-white m-sm px-md pt-md pb-lg shadow-card;
|
3
|
+
border-radius: 4px;
|
4
|
+
|
5
|
+
.card-header {
|
6
|
+
@apply text-text-primary text-heading-xl font-bold font-rc align-middle text-left mb-md;
|
7
|
+
}
|
8
|
+
|
9
|
+
.card-sub-header {
|
10
|
+
@apply text-text-primary text-caption-xl font-bold align-middle text-left mb-sm;
|
11
|
+
}
|
12
|
+
|
13
|
+
.card-caption {
|
14
|
+
@apply text-text-secondary text-caption-xl mb-sm;
|
15
|
+
}
|
16
|
+
|
17
|
+
.card-text {
|
18
|
+
@apply text-text-secondary text-body-l align-middle text-left mb-lg;
|
19
|
+
|
20
|
+
span {
|
21
|
+
@apply text-text-primary;
|
22
|
+
}
|
23
|
+
}
|
24
|
+
|
25
|
+
.card-text-primary {
|
26
|
+
@apply text-text-primary text-body-l;
|
27
|
+
}
|
28
|
+
|
29
|
+
.card-text-button {
|
30
|
+
@apply text-primary-main text-text-btn;
|
31
|
+
}
|
32
|
+
|
33
|
+
.card-label {
|
34
|
+
@apply text-legend text-text-primary mb-md;
|
35
|
+
}
|
36
|
+
|
37
|
+
.card-label-error {
|
38
|
+
@apply block text-body-s text-error mb-md;
|
39
|
+
}
|
40
|
+
|
41
|
+
.card-label-desc {
|
42
|
+
@apply font-bold text-text-secondary text-heading-s mb-md;
|
43
|
+
}
|
44
|
+
|
45
|
+
.card-link {
|
46
|
+
@apply block text-center text-link text-primary-main mt-md cursor-pointer;
|
47
|
+
}
|
48
|
+
}
|
49
|
+
|
50
|
+
.validation-error{
|
51
|
+
@apply block text-body-s text-error;
|
52
|
+
}
|
53
|
+
|
54
|
+
.docsDescription {
|
55
|
+
color: #0B0C0C !important;
|
56
|
+
}
|
57
|
+
|
58
|
+
.field-container {
|
59
|
+
@apply flex items-center;
|
60
|
+
/*@apply flex justify-center items-center;*/
|
61
|
+
}
|
62
|
+
|
63
|
+
.employeeCard {
|
64
|
+
@apply bg-white shadow-card p-md mb-xl;
|
65
|
+
border-radius: 4px;
|
66
|
+
|
67
|
+
.card-header {
|
68
|
+
@apply text-text-primary text-heading-xl font-bold font-rc align-middle text-left mb-md;
|
69
|
+
}
|
70
|
+
|
71
|
+
.card-sub-header,
|
72
|
+
.employee-card-sub-header {
|
73
|
+
@apply text-text-primary text-caption-xl font-bold align-middle text-left;
|
74
|
+
}
|
75
|
+
|
76
|
+
.card-section-header {
|
77
|
+
@apply text-text-primary text-heading-m font-bold;
|
78
|
+
}
|
79
|
+
|
80
|
+
.card-caption {
|
81
|
+
@apply text-text-secondary text-caption-xl mb-sm;
|
82
|
+
}
|
83
|
+
|
84
|
+
.card-text {
|
85
|
+
@apply text-text-secondary text-body-l align-middle text-left mb-lg;
|
86
|
+
|
87
|
+
span {
|
88
|
+
@apply text-text-primary;
|
89
|
+
}
|
90
|
+
}
|
91
|
+
|
92
|
+
.card-text-primary {
|
93
|
+
@apply text-text-primary text-body-l;
|
94
|
+
}
|
95
|
+
|
96
|
+
.card-text-button {
|
97
|
+
@apply text-primary-main text-text-btn;
|
98
|
+
}
|
99
|
+
|
100
|
+
.card-label {
|
101
|
+
@apply text-legend text-text-primary mb-md;
|
102
|
+
}
|
103
|
+
|
104
|
+
.card-label-error {
|
105
|
+
@apply block text-body-s text-error mb-md;
|
106
|
+
}
|
107
|
+
|
108
|
+
.card-label-desc {
|
109
|
+
@apply font-bold text-text-secondary text-heading-s mb-md;
|
110
|
+
}
|
111
|
+
|
112
|
+
.card-link {
|
113
|
+
@apply block text-center text-link text-link-normal mt-md;
|
114
|
+
}
|
115
|
+
|
116
|
+
.card-search-heading{
|
117
|
+
margin-right: 0px !important;
|
118
|
+
margin-left: 0px !important;
|
119
|
+
margin-bottom: 0px !important;
|
120
|
+
padding-bottom: 0px;
|
121
|
+
padding-left: 25px;
|
122
|
+
}
|
123
|
+
}
|
124
|
+
.employeeCard.fsm {
|
125
|
+
margin-bottom: 16px !important;
|
126
|
+
margin-left: 0px !important;
|
127
|
+
margin-right: 16px !important; }
|
128
|
+
|
129
|
+
.header-wrap {
|
130
|
+
@apply flex mb-md;
|
131
|
+
|
132
|
+
.header-start {
|
133
|
+
margin-right: auto;
|
134
|
+
}
|
135
|
+
|
136
|
+
.header-content {
|
137
|
+
}
|
138
|
+
|
139
|
+
.header-end {
|
140
|
+
margin-left: auto;
|
141
|
+
}
|
142
|
+
}
|
143
|
+
|
144
|
+
.card-emp {
|
145
|
+
@extend .card;
|
146
|
+
padding-right: 0;
|
147
|
+
padding-top: 0;
|
148
|
+
padding-left: 0;
|
149
|
+
@apply bg-white m-sm;
|
150
|
+
}
|
151
|
+
|
152
|
+
.submit-bar {
|
153
|
+
@apply h-10 bg-primary-main text-center w-full outline-none;
|
154
|
+
box-shadow: inset 0px -2px 0px #0B0C0C;
|
155
|
+
|
156
|
+
&:focus {
|
157
|
+
@apply outline-none;
|
158
|
+
}
|
159
|
+
|
160
|
+
header {
|
161
|
+
@apply font-rc font-medium text-legend text-white leading-10;
|
162
|
+
}
|
163
|
+
}
|
164
|
+
|
165
|
+
.submit-bar-disabled {
|
166
|
+
@apply h-10 bg-primary-main text-center w-full outline-none opacity-50;
|
167
|
+
|
168
|
+
&:focus {
|
169
|
+
@apply outline-none;
|
170
|
+
}
|
171
|
+
|
172
|
+
header {
|
173
|
+
@apply font-rc font-medium text-legend text-white leading-10;
|
174
|
+
}
|
175
|
+
}
|
176
|
+
|
177
|
+
@screen dt {
|
178
|
+
.submit-bar,
|
179
|
+
.submit-bar-disabled {
|
180
|
+
width: 240px;
|
181
|
+
}
|
182
|
+
|
183
|
+
.card {
|
184
|
+
margin-right: auto;
|
185
|
+
padding-right: 300px;
|
186
|
+
padding-left: 16px;
|
187
|
+
padding-top: 16px;
|
188
|
+
max-width: 960px;
|
189
|
+
min-width: 640px;
|
190
|
+
margin-left: 0px;
|
191
|
+
|
192
|
+
.card-header {
|
193
|
+
@apply text-heading-xl-dt;
|
194
|
+
}
|
195
|
+
|
196
|
+
.card-sub-header {
|
197
|
+
@apply text-heading-l-dt;
|
198
|
+
}
|
199
|
+
|
200
|
+
.card-caption {
|
201
|
+
@apply text-caption-xl-dt;
|
202
|
+
}
|
203
|
+
|
204
|
+
.card-text,
|
205
|
+
.card-text-primary {
|
206
|
+
@apply text-body-l-dt;
|
207
|
+
}
|
208
|
+
|
209
|
+
.card-link {
|
210
|
+
@apply text-left;
|
211
|
+
}
|
212
|
+
}
|
213
|
+
|
214
|
+
.employeeCard {
|
215
|
+
@apply mb-md mx-md !important;
|
216
|
+
|
217
|
+
&.filter {
|
218
|
+
margin-left: auto;
|
219
|
+
margin-right: auto;
|
220
|
+
}
|
221
|
+
|
222
|
+
.card-header {
|
223
|
+
@apply text-heading-xl-dt;
|
224
|
+
}
|
225
|
+
|
226
|
+
.card-sub-header {
|
227
|
+
@apply text-heading-l-dt;
|
228
|
+
}
|
229
|
+
|
230
|
+
.employee-card-sub-header {
|
231
|
+
margin-bottom: 40px;
|
232
|
+
@apply text-heading-l-dt;
|
233
|
+
}
|
234
|
+
|
235
|
+
.card-section-header {
|
236
|
+
margin-bottom: 40px;
|
237
|
+
@apply text-heading-m-dt;
|
238
|
+
}
|
239
|
+
|
240
|
+
.card-search-heading{
|
241
|
+
margin-right: 0px !important;
|
242
|
+
margin-left: 0px !important;
|
243
|
+
margin-bottom: 0px !important;
|
244
|
+
padding-bottom: 0px;
|
245
|
+
padding-left: 25px;
|
246
|
+
}
|
247
|
+
|
248
|
+
.card-caption {
|
249
|
+
@apply text-caption-xl-dt;
|
250
|
+
}
|
251
|
+
|
252
|
+
.card-text,
|
253
|
+
.card-text-primary {
|
254
|
+
@apply text-body-l-dt;
|
255
|
+
}
|
256
|
+
|
257
|
+
.card-link {
|
258
|
+
@apply text-left;
|
259
|
+
}
|
260
|
+
|
261
|
+
.label-field-pair {
|
262
|
+
@apply flex items-center;
|
263
|
+
|
264
|
+
h2 {
|
265
|
+
width: 30%;
|
266
|
+
}
|
267
|
+
|
268
|
+
.field {
|
269
|
+
width: 50%;
|
270
|
+
margin-right: 20%;
|
271
|
+
.field {
|
272
|
+
margin-right: unset;
|
273
|
+
}
|
274
|
+
}
|
275
|
+
}
|
276
|
+
|
277
|
+
.field-container {
|
278
|
+
span {
|
279
|
+
border: 2px solid black;
|
280
|
+
background: rgb(247, 247, 247);
|
281
|
+
width: 40px;
|
282
|
+
height: 40px;
|
283
|
+
display: flex;
|
284
|
+
justify-content: center;
|
285
|
+
align-items: center;
|
286
|
+
margin-top: -16px;
|
287
|
+
border-right: none;
|
288
|
+
}
|
289
|
+
}
|
290
|
+
}
|
291
|
+
|
292
|
+
.header-wrap {
|
293
|
+
@apply flex mb-md;
|
294
|
+
|
295
|
+
.header-start {
|
296
|
+
margin-right: auto;
|
297
|
+
}
|
298
|
+
|
299
|
+
.header-content {
|
300
|
+
}
|
301
|
+
|
302
|
+
.header-end {
|
303
|
+
margin-left: auto;
|
304
|
+
}
|
305
|
+
}
|
306
|
+
}
|
307
|
+
|
308
|
+
.card-section-header {
|
309
|
+
@apply text-text-primary text-heading-m font-bold;
|
310
|
+
}
|
311
|
+
|
312
|
+
.card-search-heading{
|
313
|
+
margin-right: 0px !important;
|
314
|
+
margin-left: 0px !important;
|
315
|
+
margin-bottom: 0px !important;
|
316
|
+
padding-bottom: 0px;
|
317
|
+
padding-left: 25px;
|
318
|
+
}
|
319
|
+
|
320
|
+
.button-sub-text {
|
321
|
+
width: 100%;
|
322
|
+
}
|
323
|
+
|
324
|
+
.home-page-info-banner-wrap {
|
325
|
+
margin: "0px 16px 24px 16px";
|
326
|
+
}
|
327
|
+
|
328
|
+
@media (min-width: 780px) {
|
329
|
+
.button-sub-text {
|
330
|
+
width: 240px;
|
331
|
+
}
|
332
|
+
.home-page-info-banner-wrap {
|
333
|
+
max-width: 45%;
|
334
|
+
min-width: 40%;
|
335
|
+
margin-left: 0;
|
336
|
+
margin-right: 24px;
|
337
|
+
margin-bottom: 24px;
|
338
|
+
}
|
339
|
+
.info-banner-wrap-citizen-override {
|
340
|
+
min-width: 640px;
|
341
|
+
max-width: 960px
|
342
|
+
}
|
343
|
+
.oc-aknowledgement-screen {
|
344
|
+
width: auto;
|
345
|
+
min-width: 240px;
|
346
|
+
max-width: 100%;
|
347
|
+
padding: 0px 10px;
|
348
|
+
}
|
349
|
+
}
|
350
|
+
|
351
|
+
.card-label-error {
|
352
|
+
@apply block text-body-s text-error mb-md;
|
353
|
+
}
|
354
|
+
|
355
|
+
.employeeCard-override {
|
356
|
+
margin-left: 0px !important;
|
357
|
+
}
|
358
|
+
|
359
|
+
.BPAemployeeCard {
|
360
|
+
margin-left: 0px !important;
|
361
|
+
margin-right: 0px !important;
|
362
|
+
margin-bottom: 64px !important;
|
363
|
+
}
|
364
|
+
|
365
|
+
.employee-application-details {
|
366
|
+
display: flex !important;
|
367
|
+
justify-content: space-between !important;
|
368
|
+
max-height: 60px !important;
|
369
|
+
height: 60px !important
|
370
|
+
}
|
371
|
+
.employee-main-application-details {
|
372
|
+
padding: 10px !important;
|
373
|
+
}
|
374
|
+
|
375
|
+
.employee-mulitlink-main-div {
|
376
|
+
z-index: 10 !important;
|
377
|
+
max-width: 41% !important;
|
378
|
+
}
|
379
|
+
|
380
|
+
.employee-download-btn-className {
|
381
|
+
position: unset !important;
|
382
|
+
display: flex !important;
|
383
|
+
justify-content: flex-end !important;
|
384
|
+
}
|
385
|
+
|
386
|
+
.employee-options-btn-className {
|
387
|
+
position: unset !important;
|
388
|
+
margin: 0 !important;
|
389
|
+
width: 100% !important;
|
390
|
+
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
.cardHeaderWithOptions{
|
2
|
+
@apply flex flex-row justify-between;
|
3
|
+
.multilinkWrapper{
|
4
|
+
@apply relative;
|
5
|
+
.multilink-labelWrap{
|
6
|
+
position: unset;
|
7
|
+
@apply flex z-10 items-center align-middle text-center m-md;
|
8
|
+
}
|
9
|
+
.multilink-optionWrap{
|
10
|
+
top: 32px;
|
11
|
+
right: 0%;
|
12
|
+
}
|
13
|
+
}
|
14
|
+
}
|
@@ -0,0 +1,186 @@
|
|
1
|
+
.chartHeader {
|
2
|
+
display: flex;
|
3
|
+
flex-direction: row;
|
4
|
+
justify-content: space-between;
|
5
|
+
|
6
|
+
.sideContent {
|
7
|
+
@apply flex justify-around items-center ;
|
8
|
+
|
9
|
+
}
|
10
|
+
}
|
11
|
+
|
12
|
+
.searchInput {
|
13
|
+
@apply mr-lg;
|
14
|
+
input{
|
15
|
+
margin-bottom: 0;
|
16
|
+
@apply pr-xl;
|
17
|
+
}
|
18
|
+
}
|
19
|
+
|
20
|
+
.signature-img{
|
21
|
+
top: 8px;
|
22
|
+
right: 8px;
|
23
|
+
fill: #505A5F;
|
24
|
+
@apply absolute;
|
25
|
+
}
|
26
|
+
|
27
|
+
.column-direction {
|
28
|
+
flex-direction: column;
|
29
|
+
}
|
30
|
+
|
31
|
+
.chart-wrapper {
|
32
|
+
padding: 0 10px;
|
33
|
+
margin-top: 60px;
|
34
|
+
}
|
35
|
+
|
36
|
+
.chart-row {
|
37
|
+
@apply flex justify-between flex-wrap;
|
38
|
+
.chart-item {
|
39
|
+
flex-grow: 1;
|
40
|
+
margin-bottom: 15px;
|
41
|
+
width: 100%;
|
42
|
+
|
43
|
+
&:last-child {
|
44
|
+
margin-right: 0px;
|
45
|
+
}
|
46
|
+
}
|
47
|
+
}
|
48
|
+
|
49
|
+
.cursorPointer {
|
50
|
+
@apply cursor-pointer;
|
51
|
+
}
|
52
|
+
|
53
|
+
.options {
|
54
|
+
@apply flex justify-between items-center;
|
55
|
+
div {
|
56
|
+
display: none;
|
57
|
+
}
|
58
|
+
}
|
59
|
+
|
60
|
+
.options-m {
|
61
|
+
width: 95%;
|
62
|
+
margin: 0 auto 15px;
|
63
|
+
@apply flex justify-between;
|
64
|
+
|
65
|
+
svg {
|
66
|
+
margin-right: 10px;
|
67
|
+
}
|
68
|
+
}
|
69
|
+
|
70
|
+
.options-m {
|
71
|
+
div {
|
72
|
+
@apply flex;
|
73
|
+
}
|
74
|
+
}
|
75
|
+
.no-data {
|
76
|
+
@apply flex justify-center items-center;
|
77
|
+
height: 90%;
|
78
|
+
margin-bottom: 40px;
|
79
|
+
white-space:pre;
|
80
|
+
}
|
81
|
+
|
82
|
+
@screen dt {
|
83
|
+
.chart-wrapper {
|
84
|
+
padding-left: 15px;
|
85
|
+
margin-top: 10px;
|
86
|
+
|
87
|
+
.chart-item {
|
88
|
+
margin-right: 25px !important;
|
89
|
+
margin-bottom: 25px !important;
|
90
|
+
margin-left: 0 !important;
|
91
|
+
width: 31%;
|
92
|
+
}
|
93
|
+
}
|
94
|
+
.column-direction {
|
95
|
+
flex-direction: row;
|
96
|
+
}
|
97
|
+
.options-m {
|
98
|
+
display: none;
|
99
|
+
}
|
100
|
+
|
101
|
+
.options {
|
102
|
+
div {
|
103
|
+
@apply flex cursor-pointer;
|
104
|
+
}
|
105
|
+
}
|
106
|
+
}
|
107
|
+
|
108
|
+
.showMore {
|
109
|
+
@apply text-right cursor-pointer;
|
110
|
+
color: #F47738;
|
111
|
+
}
|
112
|
+
|
113
|
+
@media (max-width: 420px) {
|
114
|
+
.recharts-default-tooltip {
|
115
|
+
width: 85%;
|
116
|
+
ul {
|
117
|
+
width: 100% !important;
|
118
|
+
}
|
119
|
+
ul li {
|
120
|
+
width: 100%;
|
121
|
+
display: flex !important;
|
122
|
+
flex-wrap: wrap;
|
123
|
+
}
|
124
|
+
}
|
125
|
+
}
|
126
|
+
|
127
|
+
|
128
|
+
@media print{
|
129
|
+
.page-break {
|
130
|
+
margin-top: 1rem;
|
131
|
+
display: block;
|
132
|
+
page-break-before: auto;
|
133
|
+
}
|
134
|
+
.chart-wrapper {
|
135
|
+
@media print{
|
136
|
+
.chart-row {
|
137
|
+
@media print{
|
138
|
+
@apply flex justify-between flex-wrap;
|
139
|
+
.chart-item {
|
140
|
+
@media print{
|
141
|
+
flex-grow: 1;
|
142
|
+
margin-right: 25px;
|
143
|
+
margin-bottom: 25px;
|
144
|
+
width: 31%;
|
145
|
+
|
146
|
+
&:last-child {
|
147
|
+
margin-right: 0px;
|
148
|
+
}
|
149
|
+
.chartHeader {
|
150
|
+
display: flex;
|
151
|
+
justify-content: space-between;
|
152
|
+
|
153
|
+
.sideContent {
|
154
|
+
@apply flex justify-around items-center ;
|
155
|
+
|
156
|
+
.searchInput {
|
157
|
+
@apply mr-lg;
|
158
|
+
input{
|
159
|
+
margin-bottom: 0;
|
160
|
+
@apply pr-xl;
|
161
|
+
}
|
162
|
+
}
|
163
|
+
|
164
|
+
.signature-img{
|
165
|
+
top: 8px;
|
166
|
+
right: 8px;
|
167
|
+
fill: #505A5F;
|
168
|
+
@apply absolute;
|
169
|
+
}
|
170
|
+
}
|
171
|
+
}
|
172
|
+
}
|
173
|
+
}
|
174
|
+
}
|
175
|
+
}
|
176
|
+
|
177
|
+
.options {
|
178
|
+
@apply flex justify-end;
|
179
|
+
}
|
180
|
+
|
181
|
+
.options-m {
|
182
|
+
display: none;
|
183
|
+
}
|
184
|
+
}
|
185
|
+
}
|
186
|
+
}
|
@@ -0,0 +1,53 @@
|
|
1
|
+
.checkbox-wrap {
|
2
|
+
@apply flex mb-md relative items-baseline;
|
3
|
+
|
4
|
+
input {
|
5
|
+
width: 38px;
|
6
|
+
height: 38px;
|
7
|
+
@apply opacity-0 absolute top-0 left-0 z-10;
|
8
|
+
}
|
9
|
+
|
10
|
+
.input-emp {
|
11
|
+
@extend input;
|
12
|
+
width: 24px;
|
13
|
+
height: 24px;
|
14
|
+
}
|
15
|
+
|
16
|
+
.custom-checkbox {
|
17
|
+
width: 38px;
|
18
|
+
height: 38px;
|
19
|
+
@apply absolute top-0 left-0 border border-solid border-input-border z-0;
|
20
|
+
|
21
|
+
img {
|
22
|
+
@apply opacity-0;
|
23
|
+
}
|
24
|
+
|
25
|
+
svg {
|
26
|
+
@apply opacity-0;
|
27
|
+
}
|
28
|
+
}
|
29
|
+
|
30
|
+
.custom-checkbox-emp {
|
31
|
+
@extend .custom-checkbox;
|
32
|
+
width: 24px;
|
33
|
+
height: 24px;
|
34
|
+
}
|
35
|
+
|
36
|
+
input:checked ~ .custom-checkbox,
|
37
|
+
input:hover ~ .custom-checkbox {
|
38
|
+
@apply border-2 border-primary-main;
|
39
|
+
}
|
40
|
+
|
41
|
+
input:checked ~ .custom-checkbox img {
|
42
|
+
@apply opacity-100;
|
43
|
+
}
|
44
|
+
|
45
|
+
input:checked ~ .custom-checkbox svg {
|
46
|
+
@apply opacity-100;
|
47
|
+
}
|
48
|
+
|
49
|
+
.label {
|
50
|
+
margin-left: 56px;
|
51
|
+
@apply text-form-field text-text-primary;
|
52
|
+
}
|
53
|
+
}
|
@@ -0,0 +1,63 @@
|
|
1
|
+
.checkpoint-connect-wrap {
|
2
|
+
padding-bottom: 40px;
|
3
|
+
@apply relative;
|
4
|
+
}
|
5
|
+
.checkpoint-done {
|
6
|
+
@apply flex;
|
7
|
+
|
8
|
+
h2 {
|
9
|
+
width: 24px;
|
10
|
+
height: 24px;
|
11
|
+
border-radius: 50%;
|
12
|
+
@apply border-b border-solid border-primary-main bg-primary-main;
|
13
|
+
}
|
14
|
+
|
15
|
+
header {
|
16
|
+
@apply text-heading-s ml-md;
|
17
|
+
|
18
|
+
p {
|
19
|
+
margin-top: 4px;
|
20
|
+
@apply text-heading-s text-text-secondary;
|
21
|
+
}
|
22
|
+
}
|
23
|
+
}
|
24
|
+
|
25
|
+
.checkpoint {
|
26
|
+
@apply flex;
|
27
|
+
|
28
|
+
h2 {
|
29
|
+
width: 24px;
|
30
|
+
height: 24px;
|
31
|
+
border-radius: 50%;
|
32
|
+
--text-opacity: 1;
|
33
|
+
@apply border-b border-solid border-border bg-border;
|
34
|
+
}
|
35
|
+
|
36
|
+
header {
|
37
|
+
@apply text-heading-s ml-md;
|
38
|
+
|
39
|
+
p {
|
40
|
+
margin-top: 4px;
|
41
|
+
@apply text-heading-s text-text-secondary;
|
42
|
+
}
|
43
|
+
}
|
44
|
+
}
|
45
|
+
|
46
|
+
.checkpoint-connect {
|
47
|
+
margin-left: 12px;
|
48
|
+
margin-top: 22px;
|
49
|
+
@apply absolute top-0 left-0 h-full border-l border-solid border-border;
|
50
|
+
}
|
51
|
+
|
52
|
+
.checkpoint-comments-wrap {
|
53
|
+
max-width: 560px;
|
54
|
+
@apply bg-grey-mid p-sm mt-sm;
|
55
|
+
|
56
|
+
h4{
|
57
|
+
@apply text-text-primary text-heading-s;
|
58
|
+
}
|
59
|
+
|
60
|
+
p{
|
61
|
+
@apply text-text-secondary text-body-s-dt;
|
62
|
+
}
|
63
|
+
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
.citizen-info-label {
|
2
|
+
@apply p-sm border-4 border-solid border-link-normal text-heading-m m-sm;
|
3
|
+
max-width: 960px;
|
4
|
+
|
5
|
+
p {
|
6
|
+
@apply text-link-normal font-bold mt-xs text-heading-s;
|
7
|
+
}
|
8
|
+
}
|
9
|
+
|
10
|
+
@screen dt {
|
11
|
+
.citizen-info-label {
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
}
|