@selco/installation-ui-css 1.0.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.
Files changed (161) hide show
  1. package/CHANGELOG.md +163 -0
  2. package/README.md +62 -0
  3. package/dist/index.css +14290 -0
  4. package/dist/index.min.css +6 -0
  5. package/img/browser-icon.png +0 -0
  6. package/img/m_seva_white_logo.png +0 -0
  7. package/img/mseva-demo.png +0 -0
  8. package/package.json +68 -0
  9. package/src/components/CardBasedOptions.scss +46 -0
  10. package/src/components/CitizenHomeCard.scss +60 -0
  11. package/src/components/EllipsisMenu.scss +17 -0
  12. package/src/components/EventCalendarView.scss +10 -0
  13. package/src/components/FAQ.scss +64 -0
  14. package/src/components/OnGroundEventCard.scss +72 -0
  15. package/src/components/PageBasedInput.scss +42 -0
  16. package/src/components/PopupHeadingLabel.scss +15 -0
  17. package/src/components/PropertySearchForm.scss +58 -0
  18. package/src/components/SearchForm.scss +56 -0
  19. package/src/components/SearchOnRadioButton.scss +10 -0
  20. package/src/components/StandaloneSearchBar.scss +10 -0
  21. package/src/components/TimeLine.scss +68 -0
  22. package/src/components/WhatsNewCard.scss +13 -0
  23. package/src/components/actionLink.scss +3 -0
  24. package/src/components/actionbar.scss +97 -0
  25. package/src/components/bannercomponents.scss +136 -0
  26. package/src/components/body.scss +144 -0
  27. package/src/components/buttons.scss +101 -0
  28. package/src/components/card.scss +391 -0
  29. package/src/components/cardHeaderWithOptions.scss +14 -0
  30. package/src/components/changeLanguage.scss +3 -0
  31. package/src/components/charts.scss +186 -0
  32. package/src/components/checkbox.scss +53 -0
  33. package/src/components/checkpoint.scss +64 -0
  34. package/src/components/citizenInfoLabel.scss +14 -0
  35. package/src/components/custombtn.scss +11 -0
  36. package/src/components/datatable.scss +134 -0
  37. package/src/components/datewrap.scss +21 -0
  38. package/src/components/detailscard.scss +6 -0
  39. package/src/components/detailscontainer.scss +13 -0
  40. package/src/components/filters.scss +98 -0
  41. package/src/components/grey.scss +3 -0
  42. package/src/components/hoc/InboxComposer.scss +115 -0
  43. package/src/components/hoc/index.scss +1 -0
  44. package/src/components/howItWorks.scss +71 -0
  45. package/src/components/imageviewer.scss +33 -0
  46. package/src/components/inboxv2/InboxLinks.scss +59 -0
  47. package/src/components/inboxv2/horizontalNav.scss +224 -0
  48. package/src/components/inboxv2/inboxSearch.scss +116 -0
  49. package/src/components/inboxv2/inboxSearchComposer.scss +169 -0
  50. package/src/components/inboxv2/index.scss +5 -0
  51. package/src/components/inboxv2/searchComponentTable.scss +45 -0
  52. package/src/components/info-banner.scss +35 -0
  53. package/src/components/inputotp.scss +15 -0
  54. package/src/components/keynote.scss +27 -0
  55. package/src/components/languageSelector.scss +23 -0
  56. package/src/components/loader.scss +96 -0
  57. package/src/components/loaderWithGap.scss +45 -0
  58. package/src/components/map.scss +30 -0
  59. package/src/components/menu.scss +0 -0
  60. package/src/components/metricsTable.scss +29 -0
  61. package/src/components/multiLink.scss +88 -0
  62. package/src/components/multiSelectDropdown.scss +78 -0
  63. package/src/components/navbar.scss +321 -0
  64. package/src/components/plusMinus.scss +15 -0
  65. package/src/components/popup.scss +16 -0
  66. package/src/components/radiobtn.scss +46 -0
  67. package/src/components/ratingstar.scss +33 -0
  68. package/src/components/roundedLabel.scss +10 -0
  69. package/src/components/searchAction.scss +20 -0
  70. package/src/components/sectionalDropdown.scss +43 -0
  71. package/src/components/selectdropdown.scss +175 -0
  72. package/src/components/sidebar.scss +141 -0
  73. package/src/components/staticDynamicMessages.scss +107 -0
  74. package/src/components/staticSideBar.scss +27 -0
  75. package/src/components/statushighlight.scss +17 -0
  76. package/src/components/submiterrors.scss +11 -0
  77. package/src/components/summary.scss +29 -0
  78. package/src/components/table.scss +201 -0
  79. package/src/components/tag.scss +27 -0
  80. package/src/components/telephone.scss +17 -0
  81. package/src/components/textfields.scss +96 -0
  82. package/src/components/toast.scss +31 -0
  83. package/src/components/toggleSwitch.scss +41 -0
  84. package/src/components/topbar.scss +153 -0
  85. package/src/components/uploadcomponents.scss +102 -0
  86. package/src/digitv2/components/ErrorMessage.scss +6 -0
  87. package/src/digitv2/components/FormComposerV2.scss +126 -0
  88. package/src/digitv2/components/actionLinkV2.scss +7 -0
  89. package/src/digitv2/components/actionbarV2.scss +108 -0
  90. package/src/digitv2/components/appContainerV2.scss +55 -0
  91. package/src/digitv2/components/backButtonV2.scss +26 -0
  92. package/src/digitv2/components/bannerV2.scss +120 -0
  93. package/src/digitv2/components/bodyContainerV2.scss +39 -0
  94. package/src/digitv2/components/breakLineV2.scss +7 -0
  95. package/src/digitv2/components/cardV2.scss +385 -0
  96. package/src/digitv2/components/checkboxV2.scss +61 -0
  97. package/src/digitv2/components/checkpointV2.scss +71 -0
  98. package/src/digitv2/components/collapseAndExpandGroups.scss +60 -0
  99. package/src/digitv2/components/dateWrapV2.scss +12 -0
  100. package/src/digitv2/components/displayPhotosV2.scss +33 -0
  101. package/src/digitv2/components/headerV2.scss +6 -0
  102. package/src/digitv2/components/infoBannerV2.scss +37 -0
  103. package/src/digitv2/components/keynoteV2.scss +35 -0
  104. package/src/digitv2/components/loaderV2.scss +90 -0
  105. package/src/digitv2/components/mobileNumberV2.scss +33 -0
  106. package/src/digitv2/components/multiSelectDropdownV2.scss +92 -0
  107. package/src/digitv2/components/noresultsfoundV2.scss +11 -0
  108. package/src/digitv2/components/otpInputV2.scss +15 -0
  109. package/src/digitv2/components/popUpV2.scss +24 -0
  110. package/src/digitv2/components/radiobtnV2.scss +51 -0
  111. package/src/digitv2/components/ratingV2.scss +33 -0
  112. package/src/digitv2/components/selectdropdownV2.scss +180 -0
  113. package/src/digitv2/components/tagV2.scss +28 -0
  114. package/src/digitv2/components/telephoneV2.scss +18 -0
  115. package/src/digitv2/components/textInputV2.scss +123 -0
  116. package/src/digitv2/components/textareaV2.scss +11 -0
  117. package/src/digitv2/components/uploadFileV2.scss +146 -0
  118. package/src/digitv2/index.scss +166 -0
  119. package/src/digitv2/pages/employee/index.scss +35 -0
  120. package/src/digitv2/pages/employee/workbench.scss +1112 -0
  121. package/src/digitv2/typography.scss +241 -0
  122. package/src/index.scss +868 -0
  123. package/src/pages/citizen/CitizenEngagementNotificationWrapper.scss +8 -0
  124. package/src/pages/citizen/DocumentList.scss +305 -0
  125. package/src/pages/citizen/Events.scss +47 -0
  126. package/src/pages/citizen/HomePageWrapper.scss +158 -0
  127. package/src/pages/citizen/SurveyList.scss +22 -0
  128. package/src/pages/citizen/citizenDocument.scss +22 -0
  129. package/src/pages/citizen/container.scss +19 -0
  130. package/src/pages/citizen/payment/payment-type.scss +3 -0
  131. package/src/pages/citizen/updatePropertyNumber.scss +46 -0
  132. package/src/pages/employee/EmployeeLogin.scss +7 -0
  133. package/src/pages/employee/cardfix.scss +13 -0
  134. package/src/pages/employee/container.scss +72 -0
  135. package/src/pages/employee/dss.scss +266 -0
  136. package/src/pages/employee/form-fields.scss +24 -0
  137. package/src/pages/employee/iframe.scss +66 -0
  138. package/src/pages/employee/inbox.scss +593 -0
  139. package/src/pages/employee/index.scss +613 -0
  140. package/src/pages/employee/login.scss +351 -0
  141. package/src/pages/employee/oldMobileInbox.scss +5 -0
  142. package/src/pages/employee/popupmodule.scss +34 -0
  143. package/src/pages/employee/response.scss +3 -0
  144. package/src/pages/employee/sandbox.scss +1293 -0
  145. package/src/pages/employee/scroll-table.scss +119 -0
  146. package/src/pages/employee/searchaction.scss +14 -0
  147. package/src/pages/employee/surveys.scss +273 -0
  148. package/src/pages/employee/tooltip.scss +36 -0
  149. package/src/pages/employee/updateNumber.scss +13 -0
  150. package/svg/arrowdown.svg +1 -0
  151. package/svg/arrowleft.svg +1 -0
  152. package/svg/calendar.svg +1 -0
  153. package/svg/camera.svg +4 -0
  154. package/svg/check.svg +4 -0
  155. package/svg/close.svg +4 -0
  156. package/svg/error.svg +4 -0
  157. package/svg/error2.svg +5 -0
  158. package/svg/searchicon.svg +4 -0
  159. package/svg/starempty.svg +4 -0
  160. package/svg/starfilled.svg +5 -0
  161. package/svg/success.svg +4 -0
@@ -0,0 +1,385 @@
1
+ @import url("../index.scss");
2
+
3
+ .digit-card {
4
+ @apply bg-white m-sm px-md pt-md pb-lg shadow-card;
5
+ @extend .light-paper-primary;
6
+ border-radius: 4px;
7
+ max-width: 960px;
8
+
9
+ .digit-card-header {
10
+ @extend .light-primary;
11
+ @apply text-heading-xl font-bold font-rc align-middle text-left mb-md;
12
+ }
13
+
14
+ .digit-card-sub-header {
15
+ @extend .light-primary;
16
+ @apply text-caption-xl font-bold align-middle text-left mb-sm;
17
+ }
18
+
19
+ .digit-card-caption {
20
+ @extend .light-text-color-secondary;
21
+ @apply text-caption-xl mb-sm;
22
+ }
23
+
24
+ .digit-card-text {
25
+ @extend .light-text-color-secondary;
26
+ @apply text-body-l align-middle text-left mb-lg;
27
+
28
+ span {
29
+ @extend .light-text-color-primary;
30
+ }
31
+ }
32
+
33
+ .digit-card-text-primary {
34
+ @extend .light-primary;
35
+ @apply text-body-l;
36
+ }
37
+
38
+ .digit-card-text-button {
39
+ @extend .light-primary;
40
+ @apply text-text-btn;
41
+ }
42
+
43
+ .digit-card-label {
44
+ @extend .light-primary;
45
+ @apply text-legend mb-sm;
46
+ }
47
+
48
+ .digit-card-label-error {
49
+ @extend .alert-error;
50
+ @apply block text-body-s text-error mb-md;
51
+ }
52
+
53
+ .digit-card-label-desc {
54
+ @extend .light-text-color-secondary;
55
+ @apply font-bold text-heading-s mb-md;
56
+ }
57
+
58
+ .digit-card-link {
59
+ @extend .light-primary;
60
+ @apply block text-center text-link mt-md cursor-pointer;
61
+ }
62
+ }
63
+
64
+ .digit-validation-error {
65
+ @extend .alert-error;
66
+ @apply block text-body-s text-error;
67
+ }
68
+
69
+ .digit-docsDescription {
70
+ @extend .light-text-color-primary;
71
+ }
72
+
73
+ .digit-field-container {
74
+ @apply flex items-center;
75
+ }
76
+
77
+ .digit-employee-card {
78
+ @extend .light-paper-primary;
79
+ @apply shadow-card p-md mb-xl;
80
+ border-radius: 4px;
81
+
82
+ .digit-card-header {
83
+ @extend .light-primary;
84
+ @apply text-heading-xl font-bold font-rc align-middle text-left mb-md;
85
+ }
86
+
87
+ .digit-card-sub-header,
88
+ .digit-employee-card-sub-header {
89
+ @extend .light-primary;
90
+ @apply text-caption-xl font-bold align-middle text-left;
91
+ }
92
+
93
+ .digit-card-section-header {
94
+ @extend .light-primary;
95
+ @apply text-heading-m font-bold;
96
+ }
97
+
98
+ .digit-card-section-sub-text {
99
+ @extend .light-primary;
100
+ @apply text-body-s;
101
+ }
102
+
103
+ .digit-card-caption {
104
+ @extend .light-text-color-secondary;
105
+ @apply text-caption-xl mb-sm;
106
+ }
107
+
108
+ .digit-card-text {
109
+ @extend .light-text-color-secondary;
110
+ @apply text-body-l align-middle text-left mb-lg;
111
+
112
+ span {
113
+ @extend .light-text-color-primary;
114
+ }
115
+ }
116
+
117
+ .card-text-primary {
118
+ @extend .light-primary;
119
+ @apply text-body-l;
120
+ }
121
+
122
+ .card-text-button {
123
+ @extend .light-primary;
124
+ @apply text-text-btn;
125
+ }
126
+
127
+ .card-label {
128
+ @extend .light-primary;
129
+ @apply text-legend mb-md;
130
+ }
131
+
132
+ .card-label-error {
133
+ @extend .alert-error;
134
+ @apply block text-body-s text-error mb-md;
135
+ }
136
+
137
+ .card-label-desc {
138
+ @extend .light-text-color-secondary;
139
+ @apply font-bold text-heading-s mb-md;
140
+ }
141
+
142
+ .card-link {
143
+ @extend .light-primary;
144
+ @apply block text-center text-link text-link-normal mt-md;
145
+ }
146
+
147
+ .card-search-heading {
148
+ margin-right: 0px !important;
149
+ margin-left: 0px !important;
150
+ margin-bottom: 0px !important;
151
+ padding-bottom: 0px;
152
+ padding-left: 25px;
153
+ }
154
+ }
155
+
156
+ .header-wrap {
157
+ @apply flex mb-md;
158
+
159
+ .header-start {
160
+ margin-right: auto;
161
+ }
162
+
163
+ .header-content {
164
+ }
165
+
166
+ .header-end {
167
+ margin-left: auto;
168
+ }
169
+ }
170
+
171
+ .card-emp {
172
+ @extend .card;
173
+ padding-right: 0;
174
+ padding-top: 0;
175
+ padding-left: 0;
176
+ @apply bg-white m-sm;
177
+ @extend .light-background;
178
+ }
179
+
180
+ .submit-bar {
181
+ @extend .light-primary-button;
182
+ @apply h-10 text-center w-full outline-none;
183
+ box-shadow: inset 0px -2px 0px theme(colors.text.primary);
184
+ cursor: pointer;
185
+
186
+ &:focus {
187
+ @apply outline-none;
188
+ }
189
+
190
+ header {
191
+ @apply font-rc font-medium text-legend text-white leading-10;
192
+ }
193
+ }
194
+
195
+ .submit-bar-disabled {
196
+ @apply h-10 bg-primary-main text-center w-full outline-none opacity-50;
197
+
198
+ &:focus {
199
+ @apply outline-none;
200
+ }
201
+
202
+ header {
203
+ @apply font-rc font-medium text-legend text-white leading-10;
204
+ }
205
+ }
206
+
207
+ @screen dt {
208
+ .submit-bar,
209
+ .submit-bar-disabled {
210
+ width: 240px;
211
+ }
212
+
213
+ .card {
214
+ display: flex;
215
+ flex-direction: column;
216
+
217
+ .card-header {
218
+ @apply text-heading-xl-dt;
219
+ }
220
+
221
+ .card-sub-header {
222
+ @apply text-heading-l-dt;
223
+ }
224
+
225
+ .card-caption {
226
+ @apply text-caption-xl-dt;
227
+ }
228
+
229
+ .card-text,
230
+ .card-text-primary {
231
+ @apply text-body-l-dt;
232
+ }
233
+
234
+ .card-link {
235
+ @apply text-left;
236
+ }
237
+ }
238
+
239
+ .digit-employee-card {
240
+ @apply mb-md mx-md !important;
241
+
242
+ &.digit-filter {
243
+ margin-left: auto;
244
+ margin-right: auto;
245
+ }
246
+
247
+ .digit-card-header {
248
+ @apply text-heading-xl-dt;
249
+ }
250
+
251
+ .digit-card-sub-header {
252
+ @apply text-heading-l-dt;
253
+ }
254
+
255
+ .digit-employee-card-sub-header {
256
+ margin-bottom: 40px;
257
+ @apply text-heading-l-dt;
258
+ }
259
+
260
+ .digit-card-section-header {
261
+ margin-bottom: 40px;
262
+ @apply text-heading-m-dt;
263
+ }
264
+
265
+ .digit-card-section-sub-text {
266
+ @apply text-text-primary text-body-s-dt;
267
+ }
268
+
269
+ .digit-card-search-heading {
270
+ margin-right: 0px !important;
271
+ margin-left: 0px !important;
272
+ margin-bottom: 0px !important;
273
+ padding-bottom: 0px;
274
+ padding-left: 25px;
275
+ }
276
+
277
+ .digit-card-caption {
278
+ @apply text-caption-xl-dt;
279
+ }
280
+
281
+ .digit-card-text,
282
+ .digit-card-text-primary {
283
+ @apply text-body-l-dt;
284
+ }
285
+
286
+ .digit-card-link {
287
+ @apply text-left;
288
+ }
289
+
290
+ .digit-label-field-pair {
291
+ @apply flex items-center;
292
+
293
+ h2 {
294
+ width: 30%;
295
+ }
296
+
297
+ .field {
298
+ width: 50%;
299
+ margin-right: 20%;
300
+ .field {
301
+ margin-right: unset;
302
+ }
303
+ }
304
+ }
305
+
306
+ .digit-field-container {
307
+ span {
308
+ border: 2px solid black;
309
+ background: rgb(247, 247, 247);
310
+ width: 40px;
311
+ height: 40px;
312
+ display: flex;
313
+ justify-content: center;
314
+ align-items: center;
315
+ margin-top: -16px;
316
+ border-right: none;
317
+ }
318
+ }
319
+ }
320
+
321
+ .digit-header-wrap {
322
+ @apply flex mb-md;
323
+
324
+ .header-start {
325
+ margin-right: auto;
326
+ }
327
+
328
+ .header-content {
329
+ }
330
+
331
+ .header-end {
332
+ margin-left: auto;
333
+ }
334
+ }
335
+ }
336
+
337
+ .digit-card-section-header {
338
+ @extend .light-text-color-primary;
339
+ @apply text-text-primary text-heading-m font-bold;
340
+ }
341
+
342
+ .digit-card-search-heading {
343
+ margin-right: 0px !important;
344
+ margin-left: 0px !important;
345
+ margin-bottom: 0px !important;
346
+ padding-bottom: 0px;
347
+ padding-left: 25px;
348
+ }
349
+
350
+ .digit-card-label-error {
351
+ @extend .alert-error;
352
+ @apply block text-body-s text-error mb-md;
353
+ }
354
+
355
+ .digit-employee-card-override {
356
+ margin-left: 0px !important;
357
+ }
358
+
359
+ .digit-employee-application-details {
360
+ display: flex !important;
361
+ justify-content: space-between !important;
362
+ max-height: 60px !important;
363
+ height: 60px !important;
364
+ }
365
+ .digit-employee-main-application-details {
366
+ padding: 10px !important;
367
+ }
368
+
369
+ .digit-employee-mulitlink-main-div {
370
+ @extend .light-primary;
371
+ z-index: 10 !important;
372
+ max-width: 41% !important;
373
+ }
374
+
375
+ .digit-employee-download-btn-className {
376
+ position: unset !important;
377
+ display: flex !important;
378
+ justify-content: flex-end !important;
379
+ }
380
+
381
+ .digit-employee-options-btn-className {
382
+ position: unset !important;
383
+ margin: 0 !important;
384
+ width: 100% !important;
385
+ }
@@ -0,0 +1,61 @@
1
+ @import url("../index.scss");
2
+
3
+ .digit-checkbox-wrap {
4
+ @apply flex mb-md relative items-baseline;
5
+
6
+ input {
7
+ width: 38px;
8
+ height: 38px;
9
+ @apply opacity-0 absolute top-0 left-0 z-10;
10
+ @extend .light-input-border;
11
+ }
12
+
13
+ .input-emp {
14
+ @extend input;
15
+ width: 24px;
16
+ height: 24px;
17
+ }
18
+
19
+ .digit-custom-checkbox {
20
+ width: 38px;
21
+ height: 38px;
22
+ @apply absolute top-0 left-0 border border-solid border-input-border z-0;
23
+ @extend .light-input-border;
24
+
25
+ img {
26
+ @apply opacity-0;
27
+ }
28
+
29
+ svg {
30
+ @apply opacity-0;
31
+ }
32
+ }
33
+
34
+ .digit-custom-checkbox-emp {
35
+ @extend .digit-custom-checkbox;
36
+ width: 24px;
37
+ height: 24px;
38
+ }
39
+
40
+ input:checked ~ .digit-custom-checkbox,
41
+ input:hover ~ .digit-custom-checkbox {
42
+ @apply border-2 border-primary-main;
43
+ @extend .light-input-border;
44
+ }
45
+
46
+ input:checked ~ .digit-custom-checkbox img {
47
+ @apply opacity-100;
48
+ }
49
+
50
+ input:checked ~ .digit-custom-checkbox svg {
51
+ @apply opacity-100;
52
+ width: 35px;
53
+ height: 35px;
54
+ }
55
+
56
+ .label {
57
+ margin-left: 56px;
58
+ @apply text-form-field text-text-primary;
59
+ @extend .light-text-color-primary;
60
+ }
61
+ }
@@ -0,0 +1,71 @@
1
+ @import url("../index.scss");
2
+
3
+ .digit-checkpoint-connect-wrap {
4
+ padding-bottom: 40px;
5
+ @apply relative;
6
+ }
7
+ .digit-checkpoint-done {
8
+ @apply flex items-center;
9
+
10
+ h2 {
11
+ z-index: 1;
12
+ width: 24px;
13
+ height: 24px;
14
+ border-radius: 50%;
15
+ @apply border-b border-solid border-primary-main bg-primary-main;
16
+ }
17
+
18
+ header {
19
+ @apply text-heading-s ml-md;
20
+
21
+ p {
22
+ margin-top: 4px;
23
+ @extend .light-text-color-secondary;
24
+ @apply text-heading-s;
25
+ }
26
+ }
27
+ }
28
+
29
+ .digit-checkpoint {
30
+ @apply flex items-center;
31
+
32
+ h2 {
33
+ z-index: 1;
34
+ width: 24px;
35
+ height: 24px;
36
+ border-radius: 50%;
37
+ --text-opacity: 1;
38
+ @apply border-b border-solid border-border bg-border;
39
+ }
40
+
41
+ header {
42
+ @apply text-heading-s ml-md;
43
+
44
+ p {
45
+ margin-top: 4px;
46
+ @extend .light-text-color-secondary;
47
+ @apply text-heading-s;
48
+ }
49
+ }
50
+ }
51
+
52
+ .digit-checkpoint-connect {
53
+ margin-left: 12px;
54
+ margin-top: 22px;
55
+ @apply absolute top-0 left-0 h-full border-l border-solid border-border;
56
+ }
57
+
58
+ .digit-checkpoint-comments-wrap {
59
+ max-width: 560px;
60
+ @apply bg-grey-mid p-sm mt-sm;
61
+
62
+ h4 {
63
+ @extend .light-text-color-primary;
64
+ @apply text-heading-s;
65
+ }
66
+
67
+ p {
68
+ @extend .light-text-color-secondary;
69
+ @apply text-body-s-dt;
70
+ }
71
+ }
@@ -0,0 +1,60 @@
1
+ @import url("../../digitv2/index.scss");
2
+
3
+ .digit-expand-collapse-wrapper {
4
+ display: flex;
5
+ flex-direction: column;
6
+ margin-top: 1rem;
7
+ }
8
+
9
+ .digit-expand-collapse-header {
10
+ background-color: #f2f2f2;
11
+ display: grid;
12
+ grid-template-columns: 1fr 1fr;
13
+ align-items: center;
14
+ padding: 12px;
15
+ position: relative;
16
+ font-weight: bolder;
17
+ border: 1px solid #828282;
18
+ border-radius: 4px;
19
+ }
20
+
21
+ .digit-icon-toggle {
22
+ position: absolute;
23
+ right: 10px;
24
+ top: 50%;
25
+ transform: translate(0%, -50%);
26
+ cursor: pointer;
27
+ span{
28
+ display: inline-flex;
29
+ align-items: center;
30
+
31
+ h5{
32
+ color: theme(colors.primary.main);
33
+ display: inline;
34
+ }
35
+ }
36
+ }
37
+
38
+ .digit-expand-collapse-header .label {
39
+ display: block;
40
+ text-align: left;
41
+ }
42
+
43
+ .digit-expand-collapse-header .value {
44
+ display: block;
45
+ text-align: right;
46
+ margin-right: 2rem;
47
+ }
48
+
49
+ .digit-toggling-wrapper.digit-collapse {
50
+ flex: none;
51
+ overflow: hidden;
52
+ height: 0;
53
+ transition: 0.2s ease-in-out;
54
+ }
55
+
56
+ .digit-toggling-wrapper {
57
+ flex: 1;
58
+ transition: 0.2s ease-in-out;
59
+ box-sizing: border-box;
60
+ }
@@ -0,0 +1,12 @@
1
+ .digit-date-picker {
2
+ @apply relative w-full cursor-pointer;
3
+ .citizen {
4
+ max-width: 540px;
5
+ }
6
+ .digit-employee-card-input {
7
+ @apply mb-lg pl-sm outline-none block border w-full h-10 border-input-border border-solid bg-white leading-10 text-form-field text-text-primary;
8
+ @extend .light-input-border;
9
+ width: calc(100%-62px);
10
+ padding-right: 9px;
11
+ }
12
+ }
@@ -0,0 +1,33 @@
1
+ .digit-photos-wrap {
2
+ max-width: 640px;
3
+ @apply flex pt-md;
4
+
5
+ img {
6
+ width: calc(33% - 9.333px);
7
+ margin-right: 14px;
8
+ }
9
+
10
+ svg {
11
+ width: calc(33% - 9.333px);
12
+ margin-right: 14px;
13
+ }
14
+
15
+ .last {
16
+ width: calc(33% - 9.333px);
17
+ }
18
+ }
19
+
20
+ .digit-image-pdf-icon {
21
+ @apply flex flex-wrap justify-start content-center;
22
+ .digit-url {
23
+ min-width: 100px;
24
+ margin-right: 10px;
25
+ max-width: 100px;
26
+ height: auto;
27
+ .digit-icon {
28
+ background: #f6f6f6;
29
+ padding: 8px;
30
+ width: 100px;
31
+ }
32
+ }
33
+ }
@@ -0,0 +1,6 @@
1
+ @import url("../index.scss");
2
+
3
+ .digit-header {
4
+ @extend .light-text-color-primary;
5
+ @apply text-heading-l font-bold mb-md ml-md;
6
+ }
@@ -0,0 +1,37 @@
1
+ @import url("../index.scss");
2
+
3
+ .digit-info-banner-wrap {
4
+ @apply bg-opacity-25 m-sm p-md;
5
+ max-width: 960px;
6
+
7
+ @extend .alert-info-bg;
8
+ border-radius: 4px;
9
+ svg {
10
+ margin-top: 5px;
11
+ @apply rounded-full;
12
+ }
13
+
14
+ div {
15
+ @apply flex items-center;
16
+ }
17
+
18
+ h2 {
19
+ @apply text-heading-m text-link-normal mb-md font-bold ml-sm;
20
+ }
21
+
22
+ p {
23
+ @apply text-body-l text-link-normal whitespace-pre-line;
24
+ }
25
+ }
26
+
27
+ @screen dt {
28
+ .digit-info-banner-wrap {
29
+ h2 {
30
+ @apply text-heading-m-dt;
31
+ }
32
+
33
+ p {
34
+ @apply text-body-l-dt;
35
+ }
36
+ }
37
+ }
@@ -0,0 +1,35 @@
1
+ .digit-key-note-pair {
2
+ @apply mb-md;
3
+
4
+ h3 {
5
+ margin-bottom: 4px;
6
+ @apply font-bold text-text-primary text-heading-s;
7
+ }
8
+
9
+ p {
10
+ @apply text-text-primary text-body-l;
11
+ }
12
+ .digit-key-note-container {
13
+ display: inline-flex;
14
+ .digit-unmask-container {
15
+ display: inline-flex;
16
+ width: fit-content;
17
+ margin-left: 10px;
18
+ margin-top: 5px;
19
+ }
20
+ }
21
+ .digit-caption {
22
+ @apply text-body-l text-text-secondary;
23
+ }
24
+ }
25
+
26
+ @screen dt {
27
+ .digit-key-note-pair {
28
+ p {
29
+ @apply text-body-l-dt;
30
+ }
31
+ .digit-caption {
32
+ @apply text-body-l-dt text-text-secondary;
33
+ }
34
+ }
35
+ }