@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,1112 @@
1
+ @import url("../../index.scss");
2
+
3
+ .bread-crumb.workbench-bredcrumb {
4
+ a {
5
+ color: theme(digitv2.lightTheme.primary);
6
+ }
7
+ }
8
+
9
+ .workbench {
10
+ &.app-container {
11
+ margin-top: 0.75rem;
12
+ }
13
+
14
+ .workbench-create-form {
15
+ display: inherit;
16
+ padding-top: 1.5rem;
17
+
18
+ .workbench-mdms-json-container{
19
+ position: relative;
20
+ .jk-digit-secondary-btn.action-bar-button {
21
+ position: absolute;
22
+ right: 0%;
23
+ }
24
+ }
25
+
26
+ .digit-form-composer-sub-header {
27
+ @extend .typography.text-heading-m;
28
+ padding-left: 1rem;
29
+
30
+ @media (max-width: theme(digitv2.screens.mobile)) {
31
+ padding-left: 0;
32
+ }
33
+ }
34
+
35
+ form {
36
+ #label_digit_root {
37
+ display: none;
38
+ }
39
+
40
+ #digit_root {
41
+ width: 100%;
42
+
43
+ .field-wrapper {
44
+ .form-group.field {
45
+ display: flex;
46
+ padding: 1em 0 0 1em;
47
+
48
+ @media (max-width: theme(digitv2.screens.mobile)) {
49
+ flex-direction: column;
50
+ }
51
+
52
+ &.field-error.has-error.has-danger {
53
+ .control-label {
54
+ @extend .alert-error;
55
+ }
56
+
57
+ .form-control {
58
+ @extend .alert-error-border;
59
+ }
60
+
61
+ .card-label-error {
62
+ display: inline;
63
+ position: relative;
64
+ margin: 0px;
65
+ padding: 0px;
66
+ top: -0.7rem;
67
+ font-weight: normal;
68
+
69
+ }
70
+ }
71
+
72
+ &.field-boolean.field-error.has-error.has-danger {
73
+
74
+ .card-label-error {
75
+ position: initial;
76
+ display: block;
77
+ margin-top: 0.5rem;
78
+
79
+ }
80
+ }
81
+
82
+ .control-label {
83
+ max-width: 12.5rem;
84
+ margin-right: 2.5rem;
85
+ @extend .card-label;
86
+ display: inline-flex;
87
+ /* align-self: center; */
88
+ line-height: 3rem;
89
+ @extend .typography.text-heading-s;
90
+ /* web view*/
91
+ @apply w-1/3;
92
+
93
+ /* tablet view*/
94
+
95
+ @media (max-width: theme(digitv2.screens.tablet)) {
96
+ max-width: 11rem;
97
+ margin-right: 1.5rem;
98
+
99
+ }
100
+
101
+ /* mobile view*/
102
+
103
+ @media (max-width: theme(digitv2.screens.mobile)) {
104
+ /*max-width: 10.2rem;*/
105
+ @apply w-full;
106
+
107
+ }
108
+
109
+ }
110
+
111
+ .all-input-field-wrapper {
112
+
113
+ @apply w-3/5;
114
+
115
+ @media (max-width: theme(digitv2.screens.mobile)) {
116
+ @apply w-full;
117
+ }
118
+
119
+ .form-control {
120
+ @extend .light-input-border;
121
+ @extend .employee-card-input;
122
+ font-style: inherit;
123
+ font-family: inherit;
124
+ /* web view*/
125
+ max-width: 37.5rem;
126
+ min-width: 20.5rem;
127
+ margin-bottom: 1rem;
128
+ /* tablet view*/
129
+
130
+ @media (max-width: theme(digitv2.screens.tablet)) {
131
+ max-width: 27.5rem;
132
+ min-width: 12.5rem;
133
+
134
+ }
135
+
136
+ /* mobile view*/
137
+
138
+ @media (max-width: theme(digitv2.screens.mobile)) {
139
+ max-width: 20.5rem;
140
+ min-width: 9.5rem;
141
+ @apply w-full;
142
+
143
+ }
144
+
145
+ &.form-select {
146
+ padding: 0%;
147
+ border: 0px;
148
+
149
+ .digit__control {
150
+ @apply outline-none;
151
+
152
+ .digit__value-container:in-range {
153
+ border-color: unset;
154
+ box-shadow: none;
155
+ box-sizing: unset;
156
+ @apply outline-none;
157
+ }
158
+ }
159
+
160
+ .digit__control--is-focused {
161
+ border-color: theme(digitv2.lightTheme.primary) !important;
162
+ box-shadow: none;
163
+ box-sizing: unset;
164
+ @apply outline-none;
165
+ }
166
+
167
+
168
+ .digit__control:hover {
169
+
170
+ border-color: unset;
171
+ box-shadow: none;
172
+ box-sizing: unset;
173
+ @apply outline-none;
174
+ }
175
+
176
+ .digit__control:focus {
177
+ border-color: theme(digitv2.lightTheme.primary);
178
+
179
+ .digit__value-container:focus {
180
+ border-color: theme(digitv2.lightTheme.primary);
181
+
182
+ }
183
+ }
184
+ }
185
+
186
+ &.form-select:focus {
187
+ @apply outline-none;
188
+ border-color: theme(digitv2.lightTheme.primary);
189
+
190
+ }
191
+ }
192
+
193
+ .form-control:read-only {
194
+ background-color: theme(digitv2.lightTheme.background);
195
+ color: theme(digitv2.lightTheme["text-color-secondary"]);
196
+ }
197
+
198
+ .form-control:focus {
199
+
200
+ @apply outline-none;
201
+ border-color: theme(digitv2.lightTheme.primary);
202
+ }
203
+
204
+ textarea.form-control {
205
+ height: 5rem;
206
+ }
207
+ }
208
+
209
+ &.field-string {
210
+ align-self: center;
211
+ }
212
+
213
+ &.field-boolean {
214
+ padding-top: 0rem;
215
+ padding-bottom: 1rem;
216
+
217
+ .custom-checkbox {
218
+ display: inline-flex;
219
+ align-items: end;
220
+
221
+ &.custom-checkbox-disabled {
222
+ pointer-events: none;
223
+ opacity: 0.6;
224
+ }
225
+
226
+ .custom-checkbox-label {
227
+ @extend .typography.text-body-s;
228
+ @apply pl-sm;
229
+ }
230
+ }
231
+
232
+ .checkbox {
233
+ width: 28rem;
234
+
235
+ label {
236
+ float: left;
237
+
238
+ /* display: flex;
239
+ flex-direction: row-reverse;
240
+ */
241
+ span {
242
+ width: 17rem;
243
+ display: none;
244
+ @extend .card-label;
245
+ }
246
+
247
+ input[type="checkbox"] {
248
+ @extend .light-input-border;
249
+ @extend .employee-card-input;
250
+ height: 1.5rem;
251
+ /* @apply ml-sm;*/
252
+ }
253
+
254
+ input[type="checkbox"]#digit_root_active {
255
+ accent-color: theme(digitv2.lightTheme.primary);
256
+ }
257
+
258
+ input:checked,
259
+ input:hover {
260
+ @apply border-2;
261
+ @extend .light-input-border;
262
+ }
263
+ }
264
+ }
265
+
266
+ .field-radio-group {
267
+ display: inline-flex;
268
+ height: 2.5rem;
269
+ align-items: center;
270
+
271
+ .radio {
272
+ @apply mr-sm;
273
+ }
274
+ }
275
+
276
+
277
+
278
+ }
279
+
280
+
281
+
282
+ &.field-object>.control-label {
283
+ margin-left: 0.5rem;
284
+ }
285
+
286
+ &.field-object {
287
+ display: block;
288
+ @extend .light-background;
289
+ @extend .light-paper-border;
290
+ padding: 1rem;
291
+ margin: 1rem;
292
+
293
+ .digit-expand-collapse-wrapper {
294
+ margin-top: 0px;
295
+ }
296
+
297
+ .digit-icon-toggle {
298
+ top: -1.5rem;
299
+ right: 1.5em;
300
+ }
301
+
302
+ .object-wrapper {
303
+ .array-remove-button-wrapper {
304
+ position: relative;
305
+ }
306
+ }
307
+
308
+ /* have to revisit for objects
309
+ [id^="root_"] {
310
+ @extend .light-background;
311
+ }
312
+ */
313
+ }
314
+
315
+ &.field-array {
316
+ display: block;
317
+ @extend .light-paper-secondary;
318
+ @extend .light-paper-border;
319
+ padding: 2rem;
320
+ margin: 1rem;
321
+ padding-top: 1rem;
322
+
323
+ .array-wrapper .array-item {
324
+ &.jk-array-objects>.array-remove-button-wrapper {
325
+ display: block;
326
+ }
327
+
328
+ &.jk-array-objects {
329
+ margin-bottom: 2rem;
330
+
331
+ .array-children>span .form-group.field.field-object {
332
+ padding-bottom: 3rem;
333
+ }
334
+
335
+ .array-obj {
336
+ position: absolute;
337
+ bottom: 1.5rem;
338
+ left: 2rem;
339
+
340
+ >.array-remove-button-wrapper {
341
+ position: unset;
342
+ }
343
+ }
344
+
345
+ }
346
+
347
+ &.jk-array-of-non-objects>.array-remove-button-wrapper {
348
+ display: inline;
349
+ left: 38.5rem;
350
+ right: unset;
351
+ top: 0.7rem;
352
+ }
353
+
354
+ &.jk-array-of-non-objects .array-children {
355
+ span .form-group {
356
+ padding-left: 0%;
357
+
358
+ .control-label {
359
+ display: none;
360
+ }
361
+
362
+ }
363
+ }
364
+
365
+ /* it has been removed since we dont need diff color for array items @extend .light-background;*/
366
+ position: relative;
367
+
368
+ .field-object {
369
+ margin-left: 0;
370
+ margin-right: 0;
371
+ }
372
+
373
+
374
+ .array-remove-button-wrapper {
375
+ position: absolute;
376
+ right: 1.3em;
377
+ top: 1.3em;
378
+ background-color: inherit !important;
379
+
380
+ .array-remove-button {
381
+ cursor: pointer;
382
+ background-color: inherit !important;
383
+
384
+ @media (max-width: theme(digitv2.screens.mobile)) {
385
+ padding: 0px;
386
+ }
387
+
388
+ h2 {
389
+ @media (max-width: theme(digitv2.screens.mobile)) {
390
+ display: none;
391
+ }
392
+ }
393
+
394
+ }
395
+ }
396
+
397
+ span.all-input-field-wrapper {
398
+ @apply w-3/5;
399
+
400
+ .form-control {
401
+ @apply w-full;
402
+ }
403
+ }
404
+
405
+ .control-label {
406
+ @apply w-1/3;
407
+
408
+ }
409
+ }
410
+
411
+
412
+ .jk-digit-secondary-btn {
413
+ height: 1.7em;
414
+ margin-top: 0.5rem;
415
+
416
+ @media (max-width: theme(digitv2.screens.mobile)) {
417
+ height: auto;
418
+ width: 100%;
419
+ }
420
+
421
+ h2 {
422
+ font-size: 1rem;
423
+ }
424
+ }
425
+
426
+ .all-input-field-wrapper {
427
+ .card-label-error {
428
+ position: unset !important;
429
+ }
430
+ }
431
+
432
+ }
433
+
434
+ .digit-expand-collapse-header {
435
+ border: 0;
436
+ background-color: inherit;
437
+ padding: 0;
438
+ }
439
+ }
440
+ }
441
+ }
442
+ }
443
+
444
+ div.action-bar-wrap {
445
+ @extend .action-bar-wrap;
446
+
447
+ .submit-bar {
448
+ @extend .submit-bar;
449
+ cursor: pointer;
450
+ @apply font-rc font-medium text-legend text-white leading-10;
451
+ }
452
+ }
453
+ .workbench-bulk-upload {
454
+ display: flex;
455
+ justify-content: space-between;
456
+ margin-bottom: 1.5rem;
457
+ .workbench-download-template-btn {
458
+ margin-right: 1rem;
459
+ }
460
+ }
461
+ }
462
+
463
+ .workbench-no-schema-found {
464
+ @apply flex justify-items-center flex-col;
465
+ align-items: center;
466
+ }
467
+
468
+ .jk-digit-loader {
469
+ position: absolute;
470
+ z-index: 10000;
471
+ width: 100vw;
472
+ background-color: rgba(189, 189, 189, 0.5);
473
+ height: 100vh;
474
+ left: 0;
475
+ top: 0;
476
+
477
+ .jk-spinner-wrapper {
478
+ width: 100%;
479
+ display: flex;
480
+ align-items: center;
481
+ justify-content: center;
482
+ height: 100%;
483
+
484
+ .jk-spinner {
485
+ border: 0.4em solid #fe7a51;
486
+ border-radius: 50%;
487
+ border-top: 0.4em solid #ffffff;
488
+ width: 4em;
489
+ height: 4em;
490
+ -webkit-animation: spin 2s linear infinite;
491
+ /* Safari */
492
+ animation: spin 1s linear infinite;
493
+ }
494
+ }
495
+ }
496
+
497
+ .jk-sm-inbox-loader {
498
+ border: 0.2em solid #fe7a51;
499
+ border-radius: 50%;
500
+ border-top: 0.2em solid #ffffff;
501
+ width: 2em;
502
+ height: 2em;
503
+ -webkit-animation: spin 2s linear infinite;
504
+ /* Safari */
505
+ animation: spin 1s linear infinite;
506
+ }
507
+
508
+ /* Safari */
509
+ @-webkit-keyframes spin {
510
+ 0% {
511
+ -webkit-transform: rotate(0deg);
512
+ }
513
+
514
+ 100% {
515
+ -webkit-transform: rotate(360deg);
516
+ }
517
+ }
518
+
519
+ @keyframes spin {
520
+ 0% {
521
+ transform: rotate(0deg);
522
+ }
523
+
524
+ 100% {
525
+ transform: rotate(360deg);
526
+ }
527
+ }
528
+
529
+ .no-data-found {
530
+ height: 100%;
531
+ width: 100%;
532
+ display: flex;
533
+ flex-direction: column;
534
+ justify-content: center;
535
+ align-items: center;
536
+
537
+ .digit-error-msg {
538
+ margin-top: 2rem;
539
+ }
540
+ }
541
+
542
+
543
+ .tooltip .tooltiptext {
544
+
545
+ top: 2rem;
546
+ left: 0;
547
+ margin-left: 0rem;
548
+ width: fit-content;
549
+ height: max-content;
550
+ white-space: normal;
551
+
552
+ .tooltiptextvalue {
553
+ font-size: 14px;
554
+ font-weight: 400px;
555
+ color: white;
556
+ }
557
+ }
558
+
559
+ .employeeCard.manage-master-wrapper {
560
+ width: 100%;
561
+ display: flex;
562
+ padding-top: 2.1rem;
563
+
564
+ @media (max-width: theme(digitv2.screens.mobile)) {
565
+ flex-direction: column;
566
+ }
567
+
568
+ .employee-select-wrap.form-field {
569
+ @apply w-1/4;
570
+ margin-right: 1rem;
571
+
572
+ @media (max-width: theme(digitv2.screens.mobile)) {
573
+ @apply w-full;
574
+ }
575
+ }
576
+ }
577
+
578
+ .table {
579
+ padding-left: 0.8rem;
580
+ padding-right: 0.8rem;
581
+
582
+ &-row-mdms:hover {
583
+ background-color: theme(digitv2.lightTheme.primary-bg);
584
+ /* Change this to the desired hover color */
585
+ cursor: pointer;
586
+ }
587
+ }
588
+ }
589
+
590
+ .header-btn {
591
+ width: 12rem;
592
+ }
593
+
594
+ .drag-drop-container {
595
+ background-color: #FAFAFA;
596
+ border: 1.5px dashed #D6D5D4;
597
+ border-radius: 5px;
598
+ margin: -1rem 1rem 1rem 1rem;
599
+ padding: 1rem 1rem 1rem 1rem;
600
+ display: flex;
601
+ align-items: center;
602
+ flex-direction: column;
603
+
604
+ .drag-drop-text {
605
+ text-decoration: none;
606
+
607
+ .browse-text {
608
+ text-decoration: none;
609
+ color: theme(colors.primary.main);
610
+ transition: color 0.3s;
611
+ }
612
+
613
+ .browse-text:hover {
614
+ color: theme(colors.primary.main);
615
+ text-decoration: underline;
616
+ cursor: pointer;
617
+ }
618
+ }
619
+
620
+ }
621
+
622
+ .uploaded-file-container {
623
+ background-color: #FAFAFA;
624
+ border: 1.5px solid #D6D5D4;
625
+ border-radius: 5px;
626
+ margin: 0.5rem 1rem 2rem 1rem;
627
+ display: flex;
628
+ flex-direction: row;
629
+ align-items: center;
630
+ padding: 0.6rem;
631
+ justify-content: space-between;
632
+
633
+ .uploaded-file-container-sub {
634
+ display: flex;
635
+ align-items: center;
636
+
637
+ .icon:hover {
638
+ cursor: pointer;
639
+ }
640
+ }
641
+ }
642
+
643
+ button:hover {
644
+ cursor: pointer;
645
+ }
646
+
647
+ .popup-header-fix {
648
+ margin-top: -0.5rem !important;
649
+ }
650
+
651
+ .option-details {
652
+ position: fixed;
653
+ top: 50%;
654
+ left: 50%;
655
+ transform: translate(-50%, -50%);
656
+ z-index: 999;
657
+ border: 1px solid #D6D5D4;
658
+ /* Border color and width */
659
+ background-color: #fff;
660
+ padding: 2em;
661
+ border-radius: 5px;
662
+ display: flex;
663
+ flex-direction: column;
664
+ width: 40%;
665
+ min-width: 300px;
666
+
667
+ .detail-container {
668
+ margin-top: 20px;
669
+ overflow-y: auto;
670
+ max-height: 50vh;
671
+
672
+ .detail-item {
673
+ margin: 10px 0;
674
+ display: flex;
675
+ align-items: center;
676
+
677
+ .key {
678
+ flex-basis: 30%;
679
+ margin-right: 10px;
680
+ font-weight: bold;
681
+ text-align: start !important;
682
+ }
683
+
684
+ .value {
685
+ flex-basis: 70%;
686
+ text-align: start !important;
687
+ }
688
+ }
689
+
690
+ .separator {
691
+ margin: 10px 0;
692
+ border: none;
693
+ border-bottom: 1px solid #ccc;
694
+ }
695
+
696
+ .view-more {
697
+ display: flex;
698
+ justify-content: flex-start;
699
+ margin-top: 1.5em;
700
+ }
701
+
702
+ .select {
703
+ display: flex;
704
+ justify-content: flex-start;
705
+ margin-top: 1.5em;
706
+ }
707
+ }
708
+ }
709
+
710
+
711
+ .close-button {
712
+ align-self: flex-end;
713
+ cursor: pointer;
714
+ font-weight: bold;
715
+ position: absolute;
716
+ padding: 7px;
717
+ top: 0;
718
+ right: 0;
719
+ border: 1px solid black;
720
+ margin-bottom: 20px;
721
+ }
722
+
723
+
724
+
725
+ .option-details-dropdown {
726
+ position: absolute;
727
+ z-index: 999;
728
+ border: #D6D5D4 1px solid;
729
+ background-color: #fff;
730
+ padding: 10px;
731
+ border-radius: 5px;
732
+ width: 250px;
733
+ margin-left: -250px;
734
+ }
735
+
736
+
737
+ .modal-wrapper {
738
+ position: fixed;
739
+ top: 0;
740
+ left: 0;
741
+ width: 100%;
742
+ height: 100%;
743
+ display: flex;
744
+ justify-content: center;
745
+ align-items: center;
746
+ background-color: rgba(0, 0, 0, 0.5);
747
+ z-index: 9999;
748
+ overflow: auto;
749
+ /* Enable scrolling if content exceeds the viewport */
750
+ }
751
+
752
+ .modal-content {
753
+ background-color: #fff;
754
+ padding: 20px;
755
+ border: 1px solid #ccc;
756
+ border-radius: 4px;
757
+ max-width: 80%;
758
+ /* Adjust the maximum width as needed */
759
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
760
+ max-height: 80vh;
761
+ /* Limit the maximum height to 80% of the viewport height */
762
+ display: flex;
763
+ flex-direction: column;
764
+ justify-content: space-between;
765
+ }
766
+
767
+ .modal-inner {
768
+ overflow-y: auto;
769
+ /* Enable scrolling within the modal */
770
+ }
771
+
772
+ .modal-content .employee-select-wrap .select input {
773
+ width: calc(100% - 32px);
774
+ background-color: initial;
775
+ position: relative !important;
776
+ z-index: 10;
777
+ width: 100%;
778
+ height: 100%;
779
+ outline: 2px solid transparent;
780
+ outline-offset: 2px;
781
+ padding-left: 8px;
782
+ }
783
+
784
+ .modal-content .employee-select-wrap .select-active {
785
+ position: absolute;
786
+ display: block;
787
+ width: 100%;
788
+ height: 2.5rem;
789
+ --border-opacity: 1;
790
+ border: 1px solid theme(colors.primary.main);
791
+ border-color: rgba(244, 119, 56, var(--border-opacity));
792
+ }
793
+
794
+ .modal-content .label-field-pair {
795
+ display: -ms-flexbox;
796
+ display: block !important;
797
+ -ms-flex-align: center;
798
+ align-items: center;
799
+ }
800
+
801
+ .modal-content .employee-select-wrap {
802
+ margin-bottom: 24px;
803
+ }
804
+
805
+ .inbox-search-wrapper {
806
+ .add-new-container {
807
+ width: 100%;
808
+ display: flex;
809
+ flex-direction: row-reverse;
810
+
811
+ .add-new {
812
+ position: relative;
813
+ color: theme(colors.primary.main);
814
+ cursor: pointer;
815
+ margin-right: 1em;
816
+ font-weight: bolder;
817
+ font-size: 23px;
818
+ }
819
+ }
820
+ }
821
+
822
+ .multiselect {
823
+ display: flex;
824
+ align-items: center;
825
+
826
+ @media (max-width: 588px) {
827
+ .info-icon-container {
828
+ position: absolute;
829
+ right: 2px;
830
+ margin-right: 0px !important;
831
+ margin-left: 0px !important;
832
+ display: flex;
833
+ justify-content: center;
834
+ margin-bottom: 0.7em;
835
+ }
836
+ }
837
+
838
+ .info-icon-container {
839
+ margin-left: 0.7em;
840
+ margin-right: -2em;
841
+ display: flex;
842
+ justify-content: center;
843
+ margin-bottom: 0.7em;
844
+ }
845
+
846
+ .info-icon-container .info-icon {
847
+ cursor: pointer;
848
+ }
849
+ }
850
+
851
+ .link-container {
852
+ flex: 1;
853
+ display: flex;
854
+ align-items: center;
855
+ padding: 10px;
856
+ background-color: #bdc5d1;
857
+
858
+ .view-all-link {
859
+ background-color: #bdc5d1;
860
+ color: theme(colors.primary.main);
861
+ font-size: 16px;
862
+ text-decoration: underline;
863
+ cursor: pointer;
864
+ }
865
+ }
866
+
867
+ .action-bar {
868
+ display: flex;
869
+ flex-direction: row;
870
+ justify-content: flex-end;
871
+
872
+ .action-bar-button {
873
+ margin-right: 0.5em;
874
+ }
875
+ }
876
+
877
+ .progressBarContainer {
878
+ position: fixed;
879
+ bottom: 20px;
880
+ right: 20px;
881
+ background-color: #fff;
882
+ padding: 45px 45px 20px 20px;
883
+ border-radius: 8px;
884
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
885
+ z-index: 9999;
886
+ width: 25vw;
887
+
888
+ @media (max-width: 768px) {
889
+ width: 70vw;
890
+ position: fixed;
891
+ bottom: 20px;
892
+ right: auto;
893
+ left: 50%;
894
+ transform: translateX(-50%);
895
+ }
896
+
897
+ .progressBar {
898
+ display: flex;
899
+ flex-direction: row;
900
+ border-radius: 4px;
901
+ overflow: hidden;
902
+ border: 1px solid #ccc;
903
+ height: 20px;
904
+ background-color: #4CAF50;
905
+ }
906
+
907
+ .progressHeading {
908
+ margin: 8px 0;
909
+ font-size: 16px;
910
+
911
+ .success-container {
912
+ display: flex;
913
+ flex-direction: row;
914
+ background-color: #00703C;
915
+ color: #fff;
916
+ padding: 5px 10px;
917
+ border-radius: 5px;
918
+ width: fit-content;
919
+ align-items: center;
920
+
921
+ .success-count {
922
+ background-color: #fff;
923
+ color: #00703C;
924
+ padding: 3px 5px;
925
+ border-radius: 3px;
926
+ margin-left: 5px;
927
+ }
928
+ }
929
+ }
930
+
931
+ .closeButton {
932
+ position: absolute;
933
+ top: 10px;
934
+ right: 10px;
935
+ cursor: pointer;
936
+ padding: 2px;
937
+ border: 1px solid #ccc;
938
+ border-radius: 1px;
939
+ }
940
+
941
+ .no-uploads {
942
+ margin-top: 1em;
943
+ }
944
+ }
945
+
946
+ .results-container-orange {
947
+ max-height: 50vh;
948
+ overflow: auto;
949
+ margin-top: 1em;
950
+ border: 1px solid #ccc;
951
+ border-radius: 4px;
952
+ padding: 1em;
953
+ background-color: #ea8a3b !important;
954
+
955
+ .no-errors {
956
+ background-color: #ea8a3b !important;
957
+ }
958
+ }
959
+
960
+ .results-container {
961
+ max-height: 50vh;
962
+ overflow: auto;
963
+ margin-top: 1em;
964
+ border: 1px solid #ccc;
965
+ border-radius: 4px;
966
+ padding: 1em;
967
+
968
+ .results-list-item {
969
+ border-bottom: 1px solid #ddd;
970
+ padding: 0.5em;
971
+ cursor: pointer;
972
+
973
+ &:hover {
974
+ background-color: #D4351C;
975
+ color: white;
976
+ /* Yellowish color on hover */
977
+ }
978
+ }
979
+
980
+ .results-details {
981
+ white-space: pre-wrap;
982
+ border: 1px solid #ccc;
983
+ border-radius: 4px;
984
+ padding: 1em;
985
+ }
986
+ }
987
+
988
+ .overlay {
989
+ position: fixed;
990
+ top: 0;
991
+ left: 0;
992
+ width: 100%;
993
+ height: 100%;
994
+ background-color: rgba(0, 0, 0, 0.3);
995
+ z-index: 9998;
996
+ }
997
+ .CloseLevelButton{
998
+ font-size: 1rem;
999
+ margin-bottom: 24px;
1000
+ /* margin-left: 24px; */
1001
+ position: relative;
1002
+ right: auto;
1003
+ border: none;
1004
+ }
1005
+
1006
+ .mdms-view-audit{
1007
+ visibility: hidden;
1008
+ }
1009
+ .audit-history{
1010
+ .diff{
1011
+ table-layout: fixed;
1012
+ border-collapse: collapse;
1013
+ width: 100%;
1014
+ }
1015
+ .diff-gutter-col {
1016
+ width: 7ch;
1017
+ }
1018
+ .diff-code-delete {
1019
+ background-color: #fdeff0;
1020
+ }
1021
+ .diff-line {
1022
+ line-height: 1.5;
1023
+ font-family: Consolas, Courier, monospace;
1024
+ }
1025
+ .diff-gutter-delete {
1026
+ background-color: #fadde0;
1027
+ }
1028
+ .diff-gutter, .diff-gutter>a {
1029
+ padding: 0 1ch;
1030
+ text-align: right;
1031
+ cursor: pointer;
1032
+ user-select: none;
1033
+ }
1034
+ .diff-code {
1035
+ white-space: pre-wrap;
1036
+ word-wrap: break-word;
1037
+ word-break: break-all;
1038
+ padding: 0;
1039
+ padding-left: .5em;
1040
+ }
1041
+ .diff td {
1042
+ vertical-align: top;
1043
+ padding-top: 0;
1044
+ padding-bottom: 0;
1045
+ }
1046
+ .diff-gutter-insert {
1047
+ background-color: #d6fedb;
1048
+ }
1049
+ .diff-gutter, .diff-gutter>a {
1050
+ padding: 0 1ch;
1051
+ text-align: right;
1052
+ cursor: pointer;
1053
+ user-select: none;
1054
+ }
1055
+ .diff-code-insert {
1056
+ background-color: #eaffee;
1057
+ }
1058
+
1059
+ }
1060
+
1061
+
1062
+ .code-details {
1063
+ padding: 0.5rem 1.5rem;
1064
+ background-color: #f9f9f9;
1065
+ border: 0.125rem solid #e0e0e0;
1066
+ border-radius: 0.25rem;
1067
+ }
1068
+
1069
+ .code-row {
1070
+ display: flex;
1071
+ align-items: flex-start;
1072
+ margin-bottom: 0.75rem;
1073
+
1074
+ &:last-child {
1075
+ margin-bottom: 0;
1076
+ }
1077
+ }
1078
+
1079
+ .code-key {
1080
+ flex: 0 0 9rem;
1081
+ font-size: 0.9rem;
1082
+ font-weight: bold;
1083
+ color: #444;
1084
+ text-align: left;
1085
+ line-height: 1.2rem;
1086
+ }
1087
+
1088
+ .code-value-container {
1089
+ display: flex;
1090
+ flex-direction: column;
1091
+ flex: 1;
1092
+ margin-left: 0.5rem;
1093
+ align-items: flex-start;
1094
+ }
1095
+
1096
+ .code-value {
1097
+ font-size: 0.9rem;
1098
+ color: #555;
1099
+ line-height: 1.2rem;
1100
+ }
1101
+
1102
+
1103
+
1104
+
1105
+
1106
+
1107
+
1108
+
1109
+
1110
+
1111
+
1112
+