@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
package/src/index.scss ADDED
@@ -0,0 +1,868 @@
1
+ /*@import 'normalize.css';*/
2
+
3
+ /*@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap");*/
4
+
5
+ @import "tailwindcss/base";
6
+
7
+ @import "tailwindcss/components";
8
+
9
+ @import "tailwindcss/utilities";
10
+
11
+ @import "react-date-range/dist/styles.css";
12
+ @import "react-date-range/dist/theme/default.css";
13
+
14
+ @import "./components/loader.scss";
15
+
16
+ @import "./components/body.scss";
17
+ @import "./components/navbar.scss";
18
+ @import "./components/card.scss";
19
+ @import "./components/buttons.scss";
20
+ @import "./components/radiobtn.scss";
21
+ @import "./components/selectdropdown.scss";
22
+ @import "./components/textfields.scss";
23
+ @import "./components/bannercomponents.scss";
24
+ @import "./components/datewrap.scss";
25
+ @import "./components/datatable.scss";
26
+ @import "./components/checkpoint.scss";
27
+ @import "./components/checkbox.scss";
28
+ @import "./components/inputotp.scss";
29
+ @import "./components/map.scss";
30
+ @import "./pages/employee/tooltip.scss";
31
+ @import "./components/menu.scss";
32
+ @import "./components/submiterrors.scss";
33
+ @import "./components/ratingstar.scss";
34
+ @import "./components/keynote.scss";
35
+ @import "./components/statushighlight.scss";
36
+ @import "./components/imageviewer.scss";
37
+ @import "./components/actionbar.scss";
38
+ @import "./components/table.scss";
39
+ @import "./components/popup.scss";
40
+ @import "./components/uploadcomponents.scss";
41
+ @import "./components/toast.scss";
42
+ @import "./components/detailscontainer.scss";
43
+ @import "./components/telephone.scss";
44
+ @import "./components/grey.scss";
45
+ @import "./components/actionLink.scss";
46
+ @import "./components/sectionalDropdown.scss";
47
+ @import "./components/detailscard.scss";
48
+ @import "./components/searchAction.scss";
49
+ @import "./components/tag.scss";
50
+ @import "./components/topbar.scss";
51
+ @import "./components/languageSelector.scss";
52
+ @import "./components/custombtn.scss";
53
+ @import "./components/citizenInfoLabel.scss";
54
+ @import "./components/roundedLabel.scss";
55
+ @import "./components/changeLanguage.scss";
56
+ @import "./components//metricsTable.scss";
57
+ @import "./components/filters.scss";
58
+ @import "./components//charts.scss";
59
+ @import "./components/summary.scss";
60
+ @import "./components/multiLink.scss";
61
+ @import "./components/info-banner.scss";
62
+ @import "./components/multiSelectDropdown.scss";
63
+ @import "./components/EllipsisMenu.scss";
64
+ @import "./components/CitizenHomeCard.scss";
65
+ @import "./components/PropertySearchForm.scss";
66
+ @import "./components/SearchForm.scss";
67
+ @import "./components/cardHeaderWithOptions.scss";
68
+ @import "./components/TimeLine.scss";
69
+ @import "./components/PageBasedInput.scss";
70
+ @import "./components/StandaloneSearchBar.scss";
71
+ @import "./components/CardBasedOptions.scss";
72
+ @import "./components/WhatsNewCard.scss";
73
+ @import "./components/SearchOnRadioButton.scss";
74
+ @import "./components/EventCalendarView.scss";
75
+ @import "./components/OnGroundEventCard.scss";
76
+ @import "./components/PopupHeadingLabel.scss";
77
+ @import "./components/staticSideBar.scss";
78
+ @import "./components/hoc/index.scss";
79
+ @import "./components/FAQ.scss";
80
+ @import "./components//howItWorks.scss";
81
+ @import "./components/staticDynamicMessages.scss";
82
+ @import "./components/toggleSwitch.scss";
83
+ @import "./components/plusMinus.scss";
84
+
85
+ @import "./pages/employee/index.scss";
86
+ @import "./pages/employee/cardfix.scss";
87
+ @import "./pages/employee/popupmodule.scss";
88
+ @import "./pages/employee/container.scss";
89
+ @import "./pages/employee/inbox.scss";
90
+ @import "./pages/employee/response.scss";
91
+ @import "./pages/employee/form-fields.scss";
92
+ @import "./pages/employee/scroll-table.scss";
93
+ @import "./pages/employee/EmployeeLogin.scss";
94
+ @import "./pages/employee/updateNumber.scss";
95
+ @import "./pages/employee/oldMobileInbox.scss";
96
+ @import "./pages/employee/dss.scss";
97
+ @import "./pages/employee/iframe.scss";
98
+
99
+ @import "./pages/citizen/payment/payment-type.scss";
100
+ @import "./pages/citizen/container.scss";
101
+ @import "./pages/citizen/HomePageWrapper.scss";
102
+ @import "./pages/citizen/CitizenEngagementNotificationWrapper.scss";
103
+ @import "./pages/citizen/Events.scss";
104
+ @import "./pages/citizen/DocumentList.scss";
105
+ @import "./pages/citizen/SurveyList.scss";
106
+ @import "./pages/citizen/updatePropertyNumber.scss";
107
+ @import "./pages/citizen/citizenDocument.scss";
108
+ @import "./pages/employee/surveys.scss";
109
+ @import "./digitv2/index.scss";
110
+ /* @import "./digitv2/typography.scss"; */
111
+ @import "./components/inboxv2/index.scss";
112
+ @import "./components//sidebar.scss";
113
+ @import "./components/loaderWithGap.scss";
114
+ @import "./pages/employee/sandbox.scss";
115
+ @import "./pages/employee/searchaction.scss";
116
+
117
+ .wbh-header-container {
118
+ display: flex !important;
119
+ align-items: center;
120
+ justify-content: space-between;
121
+ margin:1rem 0.5rem -0.5rem 0.3rem;
122
+ }
123
+
124
+ .wbh-header {
125
+ display: flex !important;
126
+ align-items: center;
127
+ justify-content: space-between;
128
+ margin:1rem 0.5rem -0.5rem 0.3rem;
129
+ .header-icon-container{
130
+ cursor: pointer;
131
+ h4{
132
+ margin:0px !important;
133
+ }
134
+ color:theme(colors.primary.main);
135
+ display: flex !important;
136
+ align-items: center;
137
+ svg {
138
+ margin:0 0 0 0.1rem;
139
+ }
140
+ }
141
+
142
+ }
143
+
144
+ .display-none {
145
+ display: none;
146
+ }
147
+
148
+ .p-unset {
149
+ padding: unset !important;
150
+ }
151
+
152
+ h1, h2, h3, h4, h5, h6 {
153
+ font-size: inherit;
154
+ font-weight: inherit; }
155
+
156
+
157
+ .flex-one {
158
+ @apply flex-1;
159
+ }
160
+
161
+ .display-flex-gap-2 {
162
+ @apply flex gap-3;
163
+ }
164
+ .rm-mb {
165
+ margin-bottom: unset !important;
166
+ }
167
+
168
+ .w-fullwidth {
169
+ @apply w-full;
170
+ }
171
+
172
+ .margin-unset {
173
+ margin: unset !important;
174
+ }
175
+
176
+ .text-align-center {
177
+ @apply text-center;
178
+ }
179
+
180
+ .desktop-only {
181
+ @apply hidden;
182
+ }
183
+
184
+ @screen dt {
185
+ .desktop-only {
186
+ @apply block;
187
+ }
188
+ }
189
+
190
+ .mobile-only {
191
+ @apply block;
192
+ }
193
+
194
+ @screen dt {
195
+ .mobile-only {
196
+ @apply hidden;
197
+ }
198
+ }
199
+
200
+ .mrlg {
201
+ @apply mr-lg;
202
+ }
203
+
204
+ .mrsm {
205
+ @apply mr-sm;
206
+ }
207
+
208
+ .mbsm {
209
+ @apply mb-sm;
210
+ }
211
+
212
+ .employeeCard {
213
+ /* TODO need to revisit that we need mx-md NABEEL/ANIL
214
+ @apply mb-md mx-md !important;
215
+ */
216
+ @apply mb-md !important;
217
+ }
218
+
219
+ .home-link {
220
+ margin-left: 16px;
221
+ margin-bottom: 16px;
222
+
223
+ a {
224
+ color: theme(colors.link.normal);
225
+ }
226
+ }
227
+
228
+ .clear-search-label {
229
+ color: theme(colors.primary.main);
230
+ cursor: pointer;
231
+ }
232
+
233
+ .search-submit-bar {
234
+ margin-top: 32;
235
+ margin-left: auto;
236
+ }
237
+
238
+ .application-details-link-button {
239
+ @apply flex justify-between items-center;
240
+
241
+ .download-button {
242
+ color: theme(colors.primary.main);
243
+ margin-left: 8px;
244
+ }
245
+ }
246
+
247
+ .response-download-button {
248
+ @apply flex mb-sm;
249
+
250
+ .download-button {
251
+ color: theme(colors.primary.main);
252
+ margin-left: 8px;
253
+ }
254
+ }
255
+
256
+ .check-page-link-button {
257
+ color: theme(colors.primary.main) !important;
258
+ }
259
+
260
+ .pt-application-download-btn {
261
+ display: flex;
262
+ justify-content: flex-end;
263
+ margin: 0px 8px;
264
+ }
265
+
266
+ .form-pt-dropdown-only {
267
+ .options-card {
268
+ position: unset;
269
+ }
270
+ }
271
+ .application-table-container {
272
+ @apply mt-lg ml-lg flex-1;
273
+ }
274
+
275
+ .primary-label-btn {
276
+ @apply flex;
277
+ gap: 10px;
278
+
279
+ svg {
280
+ fill: theme(colors.primary.main);
281
+ }
282
+
283
+ color: theme(colors.primary.main);
284
+
285
+ cursor: pointer;
286
+ font-weight: 500;
287
+ width: fit-content;
288
+ }
289
+
290
+ .primaryColor {
291
+ color: theme(colors.text.primary) !important;
292
+ }
293
+
294
+ input[readonly] {
295
+ @apply border-grey-dark !important;
296
+ background-color: theme(digitv2.lightTheme.background);
297
+ border-color: theme(digitv2.lightTheme.text-color-secondary);
298
+ color: theme(digitv2.lightTheme.text-color-secondary);
299
+ }
300
+
301
+ .hide-input-type-file {
302
+ position: absolute;
303
+ clip: rect(0, 0, 0, 0);
304
+ pointer-events: none !important;
305
+ }
306
+
307
+ @media (hover: hover) {
308
+ .primary-label-btn {
309
+ &:hover {
310
+ color: #000;
311
+
312
+ svg {
313
+ fill: #000;
314
+ }
315
+ }
316
+ }
317
+ }
318
+
319
+ .disabled {
320
+ @apply border-grey-dark text-grey-dark !important;
321
+ pointer-events: none !important;
322
+ }
323
+
324
+ .card-date-input {
325
+ @apply absolute top-0 left-0 w-3/4 bg-white pl-sm border border-input-border border-solid border-r-0;
326
+ outline: transparent solid 1px;
327
+ height: 2.5rem;
328
+ }
329
+
330
+ .h4 {
331
+ @apply mb-sm;
332
+ }
333
+
334
+ .react-time-picker {
335
+ width: 194px;
336
+ height: 2.5rem;
337
+ &__wrapper {
338
+ border: 2px solid theme(colors.text.primary);
339
+ padding-left: 16px;
340
+ }
341
+ &__inputGroup__input {
342
+ @apply px-sm;
343
+ line-height: 2.5rem;
344
+ min-width: 16px;
345
+ &:focus {
346
+ outline: 2px solid black;
347
+ }
348
+ }
349
+ }
350
+
351
+ .border-none {
352
+ border: none;
353
+ justify-content: space-between;
354
+ }
355
+
356
+ input[type="number"]::-webkit-inner-spin-button,
357
+ input[type="number"]::-webkit-outer-spin-button {
358
+ -webkit-appearance: none;
359
+ margin: 0;
360
+ }
361
+ input[type="number"] {
362
+ -moz-appearance: textfield;
363
+ }
364
+
365
+
366
+ .static {
367
+ @apply flex flex-col;
368
+ min-height: 85vh;
369
+
370
+ &-wrapper {
371
+ flex: 1;
372
+ max-height: 75vh;
373
+ overflow: scroll;
374
+ -ms-overflow-style: none; /* IE and Edge */
375
+ scrollbar-width: none; /* Firefox */
376
+
377
+ &::-webkit-scrollbar {
378
+ display: none;
379
+ }
380
+ }
381
+ }
382
+
383
+ .bill-summary {
384
+ border: #e8e7e6 solid 1px;
385
+ @apply bg-grey-light w-full;
386
+
387
+ .bill-account-details {
388
+ @apply flex mb-md;
389
+ padding: 5px;
390
+
391
+ .label {
392
+ @apply w-1/2 font-bold;
393
+ }
394
+
395
+ .value {
396
+ @apply w-1/2 text-right;
397
+ }
398
+ }
399
+
400
+ .amount-details {
401
+ @apply flex mb-md items-center;
402
+ padding: 5px;
403
+
404
+ .label {
405
+ @apply w-1/2 font-bold;
406
+ }
407
+
408
+ .value {
409
+ @apply w-1/2 font-bold text-right;
410
+ font-size: 18px;
411
+ }
412
+ }
413
+ }
414
+
415
+ .bill-payment-amount {
416
+ @apply sticky bottom-0 bg-white;
417
+ padding-bottom: 32px;
418
+
419
+ .payment-amount-front {
420
+ @apply absolute z-10 w-10 flex justify-center items-center;
421
+ background-color: #efefef;
422
+ padding: 7px 12px;
423
+ color: #9a9a9a;
424
+ }
425
+ }
426
+
427
+ .text-indent-xl input {
428
+ text-indent: 40px;
429
+ }
430
+
431
+ .select-payment-type {
432
+ @apply flex justify-center font-bold items-center;
433
+ padding-top: 10px;
434
+ padding-bottom: 25px;
435
+
436
+ .value {
437
+ font-size: 20px;
438
+ }
439
+ }
440
+
441
+ .cheque-date {
442
+ @apply flex items-center mb-lg;
443
+ border: 2px solid theme(colors.text.primary);
444
+ border-radius: 2px;
445
+
446
+ input {
447
+ @apply outline-none w-full;
448
+ border: 0px;
449
+ background: transparent;
450
+ text-indent: 5px;
451
+ padding: 6px 0px;
452
+ }
453
+
454
+ button {
455
+ @apply outline-none;
456
+ border: 0px;
457
+ background: transparent;
458
+ text-indent: 2px;
459
+ }
460
+ }
461
+
462
+ .w-half {
463
+ @apply w-1/2;
464
+ }
465
+
466
+ .ifsc-field {
467
+ @apply flex items-center mb-lg;
468
+ border: 2px solid theme(colors.text.primary);
469
+ border-radius: 2px;
470
+
471
+ input {
472
+ @apply outline-none w-full;
473
+ border: 0px;
474
+ background: transparent;
475
+ text-indent: 5px;
476
+ padding: 6px 0px;
477
+ }
478
+ button {
479
+ @apply outline-none;
480
+ border: 0px;
481
+ background: transparent;
482
+ text-indent: 2px;
483
+ }
484
+ }
485
+
486
+ .text-input {
487
+ @apply relative w-full;
488
+ max-width: 540px;
489
+ input {
490
+ &:hover {
491
+ @apply border-2 border-solid border-primary-main;
492
+ }
493
+ }
494
+ }
495
+
496
+ .text-input-width {
497
+ max-width: 540px;
498
+ }
499
+
500
+ .text-mobile-input-width {
501
+ max-width: 500px;
502
+ }
503
+
504
+ .custom-time-picker {
505
+ @apply w-full;
506
+ max-width: 200px;
507
+ }
508
+
509
+ .sla-cell {
510
+ @apply text-text-secondary;
511
+ }
512
+
513
+ .submit-bar-search {
514
+ margin-top: 32px;
515
+ margin-left: 16px;
516
+ max-width: 256px;
517
+ }
518
+
519
+ .clear-search-container {
520
+ @apply flex justify-between items-center;
521
+ }
522
+
523
+ .card-label-smaller {
524
+ @apply w-1/3;
525
+ margin-bottom: revert;
526
+ }
527
+
528
+ .card-label-APK {
529
+ @apply w-1/3;
530
+ margin-bottom: revert;
531
+ width: 100%;
532
+ }
533
+
534
+ .underline {
535
+ border-color: #e7e6e6;
536
+ @apply mb-sm;
537
+ }
538
+
539
+ .box-shadow-none {
540
+ box-shadow: none;
541
+ }
542
+
543
+ .component-in-front {
544
+ @apply flex justify-center items-center;
545
+ }
546
+
547
+ .subform-composer {
548
+ @apply flex;
549
+ }
550
+
551
+ .inbox-search-container {
552
+ .result {
553
+ @apply mt-lg;
554
+ }
555
+ }
556
+
557
+ .payment-form-text-input-correction {
558
+ width: 100% !important;
559
+ }
560
+
561
+ .edcr-citizen-inbox {
562
+ thead th:first-child {
563
+ min-width: 155px;
564
+ }
565
+ }
566
+
567
+ .error-boundary {
568
+ width: 100vw;
569
+ height: 100vh;
570
+ font-size: 16px;
571
+ font-family: sans-serif;
572
+ display: flex;
573
+ justify-content: center;
574
+ align-items: center;
575
+ flex-direction: column;
576
+ .error-container {
577
+ display: flex;
578
+ width: 400px;
579
+ justify-content: center;
580
+ align-items: center;
581
+ flex-direction: column;
582
+ h1 {
583
+ font-size: 32px;
584
+ font-weight: bold;
585
+ }
586
+ button {
587
+ height: 40px;
588
+ width: 153px;
589
+ border-radius: 0px;
590
+ padding: 8px 24px;
591
+ color: white;
592
+ cursor: pointer;
593
+ background-color: theme(colors.primary.main);
594
+ }
595
+ }
596
+ }
597
+
598
+ .error-boundary summary,
599
+ .error-boundary details {
600
+ width: 300px;
601
+ background-color: rgb(218, 100, 100);
602
+ margin: 5px;
603
+ border: 2px solid #222;
604
+ border-radius: 3px;
605
+ padding: 3px;
606
+ }
607
+
608
+ .full-width-card {
609
+ width: 92vw !important;
610
+ }
611
+ .full-employee-card-link {
612
+ width: 100% !important;
613
+ margin: 7px 0px;
614
+ a {
615
+ color: inherit;
616
+ text-decoration: inherit;
617
+ }
618
+ }
619
+ .full-employee-card-height {
620
+ height: unset !important;
621
+ }
622
+
623
+ @media (min-width: 640px) {
624
+ .full-employee-card-height {
625
+ height: 196px !important;
626
+ }
627
+ .full-employee-card-link {
628
+ width: 30% !important;
629
+ }
630
+ .full-width-card {
631
+ @apply w-full !important;
632
+ }
633
+ }
634
+ .applications-list-container {
635
+ }
636
+ .complaint-summary {
637
+ @media (min-width: 780px) {
638
+ flex: 1 0 auto;
639
+ margin-left: 1rem;
640
+ margin-top: 1rem;
641
+ }
642
+ }
643
+
644
+ @media (min-width: 780px) {
645
+ .citizen-form-wrapper {
646
+ width: calc(100% - 219px);
647
+ display: flex;
648
+ justify-content: flex-start !important;
649
+ margin-top: 1rem;
650
+ padding-left: 16px;
651
+ padding-right: 16px;
652
+ }
653
+ }
654
+ @media (min-width: 780px) {
655
+ .citizen-card-container {
656
+ padding-left: 15px;
657
+ padding-right: 15px;
658
+ margin-top: 1rem;
659
+ }
660
+ }
661
+
662
+ @media (min-width: 780px) {
663
+ .citizen-obps-wrapper,
664
+ .selection-card-wrapper,
665
+ .pgr-citizen-wrapper,
666
+ .pt-citizen,
667
+ .bill-citizen,
668
+ .bills-citizen-wrapper,
669
+ .payer-bills-citizen-wrapper,
670
+ .engagement-citizen-wrapper,
671
+ .citizen-all-services-wrapper,
672
+ .mcollect-citizen,
673
+ .ws-citizen-wrapper,
674
+ .tl-citizen {
675
+ width: calc(100% - 219px);
676
+ padding-left: 16px;
677
+ padding-right: 16px;
678
+ margin-top: 1rem;
679
+ }
680
+ }
681
+ @media only screen and (max-width: 768px) {
682
+ /* For mobile phones: */
683
+ .error-boundary {
684
+ height: 75vh;
685
+ }
686
+ }
687
+ .employee-app-wrapper {
688
+ min-height: calc(100vh - 8em);
689
+ }
690
+
691
+ .ws-custom-wrapper {
692
+ .submit {
693
+ display: flex !important;
694
+ flex-direction: row-reverse !important;
695
+ width: 100% !important;
696
+ align-items: center;
697
+ button {
698
+ width: 240px !important;
699
+ }
700
+ p {
701
+ width: unset;
702
+ margin-right: 1rem;
703
+ }
704
+ }
705
+ }
706
+
707
+ .plumber-details-new-value-wrapper {
708
+ flex: 2 1 auto;
709
+ }
710
+
711
+ .connection-details-new-value-wrapper {
712
+ flex: 1 1 auto;
713
+ }
714
+
715
+ .connection-details-old-value-wrapper,
716
+ .plumber-details-old-value-wrapper {
717
+ flex: 1 1 auto;
718
+
719
+ .old-value-null-wrapper {
720
+ visibility: hidden;
721
+ padding-bottom: 8px;
722
+ margin-bottom: 8px;
723
+ }
724
+ .row {
725
+ color: #b1b4b6;
726
+ font-weight: 700;
727
+ font-size: 16px;
728
+ }
729
+ }
730
+
731
+ .plumber-details-new-value-wrapper {
732
+ flex: 2 1 auto;
733
+ }
734
+
735
+ .connection-details-new-value-wrapper {
736
+ flex: 1 1 auto;
737
+ }
738
+
739
+ .connection-details-old-value-wrapper,
740
+ .plumber-details-old-value-wrapper {
741
+ flex: 1 1 auto;
742
+ .old-value-null-wrapper {
743
+ visibility: hidden;
744
+ padding-bottom: 8px;
745
+ margin-bottom: 8px;
746
+ }
747
+ .row {
748
+ color: #b1b4b6;
749
+ font-weight: 700;
750
+ font-size: 16px;
751
+ }
752
+ }
753
+
754
+ .modal-header-ws {
755
+ padding: 1rem;
756
+ font-weight: 400;
757
+ }
758
+ .modal-body-ws {
759
+ padding: 1rem;
760
+ font-weight: 700;
761
+ color: theme(colors.text.primary);
762
+ font-size: 24px;
763
+ margin-bottom: 1rem;
764
+ }
765
+ .privacy-icon {
766
+ cursor: pointer;
767
+ }
768
+ .privacy-icon:hover {
769
+ path {
770
+ fill: rgba(244, 119, 56, 1);
771
+ }
772
+ }
773
+
774
+ .privacy-icon-2 {
775
+ cursor: pointer;
776
+ }
777
+ .privacy-icon-2:hover {
778
+ path {
779
+ fill: none;
780
+ }
781
+ }
782
+
783
+ .audit-card {
784
+ width: 80%;
785
+ margin-left: -260px;
786
+ margin-right: -27%;
787
+ max-height: 120px;
788
+ margin-top: 90px;
789
+ }
790
+ .localisation-info {
791
+ max-width: 100%;
792
+ .info-banner-wrap {
793
+ max-width: 100%;
794
+ margin: 0%;
795
+ margin-bottom: 1rem;
796
+ display: flex;
797
+ align-items: center;
798
+ line-height: unset;
799
+ align-content: baseline;
800
+ gap: 0.5rem;
801
+ height: 5rem;
802
+ }
803
+ }
804
+
805
+ .info-banner-wrap div{
806
+ align-items: center;
807
+ }
808
+
809
+ .xls-popup-module {
810
+ margin: auto;
811
+ width: calc(100% - 5rem);
812
+ }
813
+ .actionBarClass{
814
+ display: flex;
815
+ justify-content: space-between;
816
+ flex-direction: row-reverse;
817
+ }
818
+ .previous-button{
819
+ margin-left: 4rem;
820
+ }
821
+ .view-composer-header-section{
822
+ display: flex;
823
+ justify-content: space-between;
824
+ align-items: center;
825
+ }
826
+
827
+ .app-iframe {
828
+ height: unset !important;
829
+ }
830
+ .app-iframe-wrapper.dss-kibana-iframe-wrapper {
831
+ left: unset !important;
832
+ top: unset !important;
833
+ position: unset !important;
834
+ }
835
+
836
+ .app-iframe.dss-kibana-iframe {
837
+ position: unset !important;
838
+ }
839
+ .employeeCard.kibana-card.chart-item {
840
+ width: 100%;
841
+ }
842
+
843
+ .localization-search-table{
844
+ margin-bottom: 2rem;
845
+
846
+ .pagination{
847
+ margin-bottom: 2rem;
848
+ }
849
+ }
850
+
851
+ .user-profile {
852
+
853
+ &.employee {
854
+ margin-top: 6rem;
855
+ margin-left: 4.5rem;
856
+ }
857
+
858
+ &.citizen {
859
+ margin-top: 1.5rem;
860
+ margin-left: 1.5rem;
861
+ }
862
+ }
863
+
864
+ .workbench-localization-add-popup{
865
+ .digit-popup-children-wrap{
866
+ overflow: visible !important;
867
+ }
868
+ }