@unifylib/ui-lib 1.0.3

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 (129) hide show
  1. package/README.md +0 -0
  2. package/ng-package.json +7 -0
  3. package/package.json +12 -0
  4. package/src/lib/base-model/SearchStrConfig.ts +12 -0
  5. package/src/lib/base-model/api-response.ts +23 -0
  6. package/src/lib/base-model/audit-log-entry.ts +7 -0
  7. package/src/lib/base-model/button-action-settings.ts +25 -0
  8. package/src/lib/base-model/column-def.model.ts +34 -0
  9. package/src/lib/base-model/do-action-request.ts +11 -0
  10. package/src/lib/base-model/field-action.ts +7 -0
  11. package/src/lib/base-model/field-filter.model.ts +14 -0
  12. package/src/lib/base-model/field-info.ts +98 -0
  13. package/src/lib/base-model/field-predicate.model.ts +7 -0
  14. package/src/lib/base-model/filter-request.ts +27 -0
  15. package/src/lib/base-model/filter.model.ts +49 -0
  16. package/src/lib/base-model/get-items-list.ts +24 -0
  17. package/src/lib/base-model/index.ts +11 -0
  18. package/src/lib/base-model/lookupItem.ts +21 -0
  19. package/src/lib/base-model/null-snackmessage.ts +9 -0
  20. package/src/lib/base-model/page-info.ts +51 -0
  21. package/src/lib/base-model/report-request.model.ts +33 -0
  22. package/src/lib/base-model/response-envelop.model.ts +15 -0
  23. package/src/lib/base-model/snack-message.model.ts +14 -0
  24. package/src/lib/base-model/snackmessage-interface.ts +7 -0
  25. package/src/lib/base-model/table-column.interface.ts +29 -0
  26. package/src/lib/base-model/table-page-user-action.interface.ts +33 -0
  27. package/src/lib/base-model/workflow/workflow-steps.model.ts +9 -0
  28. package/src/lib/base-model/workflow/workflow.model.ts +52 -0
  29. package/src/lib/components/action-confirmation/action-confirmation.component.css +34 -0
  30. package/src/lib/components/action-confirmation/action-confirmation.component.html +18 -0
  31. package/src/lib/components/action-confirmation/action-confirmation.component.spec.ts +23 -0
  32. package/src/lib/components/action-confirmation/action-confirmation.component.ts +58 -0
  33. package/src/lib/components/activity-report-form/activity-report-form.component.html +109 -0
  34. package/src/lib/components/activity-report-form/activity-report-form.component.scss +0 -0
  35. package/src/lib/components/activity-report-form/activity-report-form.component.spec.ts +25 -0
  36. package/src/lib/components/activity-report-form/activity-report-form.component.ts +605 -0
  37. package/src/lib/components/audit-log-details-dialog/audit-log-details-dialog.component.css +51 -0
  38. package/src/lib/components/audit-log-details-dialog/audit-log-details-dialog.component.html +23 -0
  39. package/src/lib/components/audit-log-details-dialog/audit-log-details-dialog.component.spec.ts +23 -0
  40. package/src/lib/components/audit-log-details-dialog/audit-log-details-dialog.component.ts +69 -0
  41. package/src/lib/components/audit-log-list/audit-log.component.html +23 -0
  42. package/src/lib/components/audit-log-list/audit-log.component.scss +0 -0
  43. package/src/lib/components/audit-log-list/audit-log.component.spec.ts +25 -0
  44. package/src/lib/components/audit-log-list/audit-log.component.ts +116 -0
  45. package/src/lib/components/auto-complete/auto-complete.component.css +14 -0
  46. package/src/lib/components/auto-complete/auto-complete.component.html +29 -0
  47. package/src/lib/components/auto-complete/auto-complete.component.spec.ts +23 -0
  48. package/src/lib/components/auto-complete/auto-complete.component.ts +330 -0
  49. package/src/lib/components/base-form/base-form.component.html +58 -0
  50. package/src/lib/components/base-form/base-form.component.scss +0 -0
  51. package/src/lib/components/base-form/base-form.component.spec.ts +25 -0
  52. package/src/lib/components/base-form/base-form.component.ts +305 -0
  53. package/src/lib/components/base-form-canvas/base-form-canvas.component.css +22 -0
  54. package/src/lib/components/base-form-canvas/base-form-canvas.component.html +1006 -0
  55. package/src/lib/components/base-form-canvas/base-form-canvas.component.spec.ts +23 -0
  56. package/src/lib/components/base-form-canvas/base-form-canvas.component.ts +573 -0
  57. package/src/lib/components/base-input-dialog/base-input-dialog.component.css +0 -0
  58. package/src/lib/components/base-input-dialog/base-input-dialog.component.html +42 -0
  59. package/src/lib/components/base-input-dialog/base-input-dialog.component.spec.ts +23 -0
  60. package/src/lib/components/base-input-dialog/base-input-dialog.component.ts +78 -0
  61. package/src/lib/components/base-table/base-table.component.html +242 -0
  62. package/src/lib/components/base-table/base-table.component.scss +31 -0
  63. package/src/lib/components/base-table/base-table.component.spec.ts +25 -0
  64. package/src/lib/components/base-table/base-table.component.ts +568 -0
  65. package/src/lib/components/button-actions/button-actions.component.html +28 -0
  66. package/src/lib/components/button-actions/button-actions.component.scss +6 -0
  67. package/src/lib/components/button-actions/button-actions.component.spec.ts +23 -0
  68. package/src/lib/components/button-actions/button-actions.component.ts +72 -0
  69. package/src/lib/components/editable-base-table/editable-base-table.component.html +372 -0
  70. package/src/lib/components/editable-base-table/editable-base-table.component.scss +44 -0
  71. package/src/lib/components/editable-base-table/editable-base-table.component.spec.ts +25 -0
  72. package/src/lib/components/editable-base-table/editable-base-table.component.ts +570 -0
  73. package/src/lib/components/equation-builder/equation-builder.component.css +0 -0
  74. package/src/lib/components/equation-builder/equation-builder.component.html +31 -0
  75. package/src/lib/components/equation-builder/equation-builder.component.spec.ts +23 -0
  76. package/src/lib/components/equation-builder/equation-builder.component.ts +121 -0
  77. package/src/lib/components/multi-auto-complete/multi-auto-complete.component.css +11 -0
  78. package/src/lib/components/multi-auto-complete/multi-auto-complete.component.html +38 -0
  79. package/src/lib/components/multi-auto-complete/multi-auto-complete.component.spec.ts +23 -0
  80. package/src/lib/components/multi-auto-complete/multi-auto-complete.component.ts +317 -0
  81. package/src/lib/components/paginator/paginator.component.css +25 -0
  82. package/src/lib/components/paginator/paginator.component.html +34 -0
  83. package/src/lib/components/paginator/paginator.component.ts +94 -0
  84. package/src/lib/components/rejection-comment/action-comment.component.css +33 -0
  85. package/src/lib/components/rejection-comment/action-comment.component.html +46 -0
  86. package/src/lib/components/rejection-comment/action-comment.component.spec.ts +23 -0
  87. package/src/lib/components/rejection-comment/action-comment.component.ts +86 -0
  88. package/src/lib/components/report-details-dialog/report-details-dialog.component.css +17 -0
  89. package/src/lib/components/report-details-dialog/report-details-dialog.component.html +16 -0
  90. package/src/lib/components/report-details-dialog/report-details-dialog.component.spec.ts +23 -0
  91. package/src/lib/components/report-details-dialog/report-details-dialog.component.ts +113 -0
  92. package/src/lib/components/report-form/report-form.component.html +94 -0
  93. package/src/lib/components/report-form/report-form.component.scss +0 -0
  94. package/src/lib/components/report-form/report-form.component.spec.ts +25 -0
  95. package/src/lib/components/report-form/report-form.component.ts +588 -0
  96. package/src/lib/components/search-bar/search-bar.component.html +62 -0
  97. package/src/lib/components/search-bar/search-bar.component.scss +8 -0
  98. package/src/lib/components/search-bar/search-bar.component.spec.ts +25 -0
  99. package/src/lib/components/search-bar/search-bar.component.ts +70 -0
  100. package/src/lib/components/shared/attachment-uploader/attachment-uploader.component.css +54 -0
  101. package/src/lib/components/shared/attachment-uploader/attachment-uploader.component.html +22 -0
  102. package/src/lib/components/shared/attachment-uploader/attachment-uploader.component.spec.ts +23 -0
  103. package/src/lib/components/shared/attachment-uploader/attachment-uploader.component.ts +45 -0
  104. package/src/lib/components/shared-list/shared-list.component.css +0 -0
  105. package/src/lib/components/shared-list/shared-list.component.html +17 -0
  106. package/src/lib/components/shared-list/shared-list.component.spec.ts +23 -0
  107. package/src/lib/components/shared-list/shared-list.component.ts +53 -0
  108. package/src/lib/components/title-bar/title-bar.component.css +0 -0
  109. package/src/lib/components/title-bar/title-bar.component.css.map +1 -0
  110. package/src/lib/components/title-bar/title-bar.component.html +31 -0
  111. package/src/lib/components/title-bar/title-bar.component.scss +23 -0
  112. package/src/lib/components/title-bar/title-bar.component.spec.ts +23 -0
  113. package/src/lib/components/title-bar/title-bar.component.ts +119 -0
  114. package/src/lib/services/backend-service.ts +286 -0
  115. package/src/lib/services/index.ts +3 -0
  116. package/src/lib/services/top-panel.ts +17 -0
  117. package/src/lib/services/trigger-form.service.ts +11 -0
  118. package/src/lib/share-module/shared-module.ts +10 -0
  119. package/src/lib/styles/invoiceq-theme.scss +252 -0
  120. package/src/lib/styles/styles.scss +1723 -0
  121. package/src/lib/utils/base-utils.ts +102 -0
  122. package/src/lib/validators/date-range-validator.ts +31 -0
  123. package/src/lib/validators/index.ts +3 -0
  124. package/src/lib/validators/match-list.validator.ts +10 -0
  125. package/src/lib/validators/multi-email-validator.ts +15 -0
  126. package/src/public-api.ts +21 -0
  127. package/tsconfig.lib.json +15 -0
  128. package/tsconfig.lib.prod.json +11 -0
  129. package/tsconfig.spec.json +15 -0
@@ -0,0 +1,1723 @@
1
+ @use '@angular/material' as mat;
2
+ @use "invoiceq-theme";
3
+
4
+ @import '@angular/material/prebuilt-themes/indigo-pink.css';
5
+ @import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');
6
+ @import url('https://fonts.googleapis.com/icon?family=Material+Icons');
7
+ @include mat.core();
8
+
9
+
10
+ html, body {
11
+ font-family: "Cairo";
12
+ background-color: white;
13
+ //overflow: hidden;
14
+ width: 100%;
15
+ height: 100%;
16
+ margin: 0;
17
+ }
18
+
19
+ .hrdivider {
20
+ position: relative;
21
+ margin-top: 10vh;
22
+ width: 100%;
23
+ text-align: start;
24
+ color: var(--primary-color)
25
+ }
26
+
27
+ .hrdivider-mid {
28
+ @extend .hrdivider;
29
+ margin-top: 3vh !important;
30
+ margin-bottom: 3vh !important;
31
+ }
32
+
33
+ .hyper-link {
34
+ cursor: pointer;
35
+ color: -webkit-link
36
+ }
37
+
38
+ .hyper-link:hover {
39
+ text-decoration: underline;
40
+ }
41
+
42
+ .hrdivider-mini {
43
+ @extend .hrdivider;
44
+ margin-top: 1vh !important;
45
+ margin-bottom: 2vh !important;
46
+ }
47
+
48
+ .header-hr {
49
+ border-top: 1px solid rgba(0, 0, 0, 0.08);;
50
+ }
51
+
52
+ .hr-splitter {
53
+ border-top: 1px solid var(--primary-color-2nd);
54
+ }
55
+
56
+ .icon-design {
57
+ display: flex;
58
+ align-items: center;
59
+ cursor: pointer;
60
+
61
+ }
62
+
63
+ .hrdivider span {
64
+ position: absolute;
65
+ top: -11px;
66
+ background-color: #fff;
67
+ color: var(--primary-color);
68
+ padding: 0 10px;
69
+ font-weight: bold;
70
+ font-size: 16px;
71
+ margin-left: 30px;
72
+ margin-right: 30px;
73
+ text-align: center;
74
+ }
75
+
76
+ .iq_form_field {
77
+ border-radius: 12px !important;
78
+ }
79
+
80
+ .iq-input {
81
+ height: 25px;
82
+ margin-top: -10px !important;
83
+ }
84
+
85
+ .prefix-suffix {
86
+ color: #8c8c8c;
87
+ }
88
+
89
+ .iq-error {
90
+ font-size: 9px;
91
+ color: red;
92
+ margin-top: -15px !important;
93
+ }
94
+
95
+ .iq-company-title {
96
+ padding-top: 5px;
97
+ font-size: 16pt;
98
+ font-weight: bold;
99
+ color: var(--primary-color);
100
+ margin: 0.5em;
101
+ }
102
+
103
+ .tr-lang {
104
+ width: 24px;
105
+ height: 24px;
106
+ color: var(--accent-color);
107
+ font-size: 12px;
108
+ border-radius: 4px;
109
+ background: #F0F0F0;
110
+ font-weight: 700;
111
+ cursor: pointer;
112
+ display: flex;
113
+ justify-content: center;
114
+ align-items: center;
115
+ margin: 0 5px;
116
+ }
117
+
118
+ .iq-toolbar-profile {
119
+ font-style: normal;
120
+ font-weight: 400;
121
+ font-size: 14px;
122
+ line-height: 11px;
123
+ color: #222222;
124
+ }
125
+
126
+ .iq-button-action {
127
+ height: 48px !important;
128
+ @extend .iq_button !optional;
129
+ font-size: 1.5em !important;
130
+ margin-top: 4px !important;
131
+ }
132
+
133
+ .iq-button-action2 {
134
+ height: 52px;
135
+ font-weight: 600;
136
+ border-radius: 4px !important;
137
+ font-size: 1.25em !important;
138
+ margin-top: 10px !important;
139
+ }
140
+
141
+ .amount {
142
+ height: 3.69em !important;
143
+ border: dotted 2px !important;
144
+ margin-top: 4px !important;
145
+ }
146
+
147
+ .no-margin-bottom {
148
+ margin-bottom: 0 !important;
149
+ }
150
+
151
+ .iq-footr-button {
152
+ height: 48px !important;
153
+ @extend .iq_button !optional;
154
+ font-size: 1.15em !important;
155
+ margin-top: 4px !important;
156
+ border-right: solid 0px transparent;
157
+ border-left: solid 0px transparent;
158
+ }
159
+
160
+ .iq-items-action-button {
161
+ height: 48px !important;
162
+ @extend .iq_button !optional;
163
+ font-size: 1.0em !important;
164
+ width: 90%;
165
+
166
+ }
167
+
168
+ .iq-payment-method-action {
169
+ height: 90px !important;
170
+ @extend .iq_button !optional;
171
+ font-size: 1.50em !important;
172
+ margin-top: 4px !important;
173
+ }
174
+
175
+ .iq_button {
176
+ height: 52px;
177
+ font-size: 1.70em;
178
+ font-weight: 600;
179
+ border-radius: 12px !important;
180
+ }
181
+
182
+ .iq_button-small {
183
+ font-size: 1.10em;
184
+ font-weight: 600;
185
+ border-radius: 12px !important;
186
+ }
187
+
188
+ .iq-table-header {
189
+ font-size: medium;
190
+ background: var(--primary-color-2nd);
191
+ color: #FFFFFF;
192
+ }
193
+
194
+ .text-secondary {
195
+ font-size: medium;
196
+ }
197
+
198
+ .text-secondary-with-border {
199
+ font-size: medium;
200
+ }
201
+
202
+ .iq-snack-bar {
203
+ margin: auto !important;
204
+ position: absolute;
205
+ max-width: 60% !important;
206
+ top: 12vh;
207
+ width: 60%;
208
+ left: 20%;
209
+
210
+ .mat-simple-snackbar-action {
211
+ color: var(--accent-color) !important;
212
+ }
213
+
214
+ }
215
+
216
+ // type: 'info' | 'success' | 'error' | 'warning';
217
+
218
+ .iq-snack-bar-info {
219
+ @extend .iq-snack-bar;
220
+ border-color: #B3D4FF;
221
+ background-color: #DEEBFF !important;
222
+ color: var(--accent-color) !important;
223
+ }
224
+
225
+ .iq-snack-bar-success {
226
+ @extend .iq-snack-bar;
227
+ background-color: #d4edda !important;
228
+ color: #155724 !important;
229
+ }
230
+
231
+ .iq-snack-bar-error {
232
+ @extend .iq-snack-bar;
233
+ background-color: #eac6c6 !important;
234
+ color: #a42b2b !important;
235
+ }
236
+
237
+ .iq-snack-bar-warning {
238
+ @extend .iq-snack-bar;
239
+ color: var(--accent-color) !important;
240
+ border-color: #FFF0B3 !important;
241
+ background-color: #FFFAE6 !important;
242
+ }
243
+
244
+ .iq-lits-rows {
245
+ padding-left: 1%;
246
+ padding-right: 1%;
247
+ width: 100%;
248
+ }
249
+
250
+ .iq-mobile-main-title {
251
+ font-size: 18pt;
252
+ }
253
+
254
+ .iq-mobile-sub-title {
255
+ font-size: 10pt;
256
+ }
257
+
258
+
259
+ .invoice-label {
260
+ color: var(--primary-color);
261
+ margin: 0px;
262
+ font-weight: bold;
263
+ padding-bottom: 10px !important;
264
+ padding-top: 6px !important;
265
+ border-bottom: 1px solid lightgray;
266
+
267
+ }
268
+
269
+ .invoice-label-text {
270
+ color: var(--accent-color);
271
+ font-weight: normal;
272
+ word-wrap: break-word;
273
+ white-space: pre-wrap;
274
+ width: 100%;
275
+ }
276
+
277
+ .invoice-note-text {
278
+ color: var(--accent-color);
279
+ font-weight: normal;
280
+ }
281
+
282
+ .invoice-section {
283
+ font-size: 1.1em;
284
+ }
285
+
286
+ .table {
287
+ width: 100%;
288
+ margin-bottom: 1rem;
289
+ background-color: transparent;
290
+ border-collapse: collapse;
291
+ }
292
+
293
+ .row {
294
+ display: -ms-flexbox;
295
+ display: flex;
296
+ -ms-flex-wrap: wrap;
297
+ flex-wrap: wrap;
298
+ margin-right: 15px;
299
+ margin-left: 15px;
300
+ }
301
+
302
+ .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9 {
303
+ float: left;
304
+ }
305
+
306
+ .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
307
+ position: relative;
308
+ min-height: 1px;
309
+ padding-right: 15px;
310
+ padding-left: 15px;
311
+ box-sizing: border-box;
312
+ }
313
+
314
+ .col-md-1 {
315
+ -ms-flex: 0 0 8.33333333%;
316
+ flex: 0 0 8.33333333%;
317
+ max-width: 8.33333333%;
318
+ }
319
+
320
+ .col-md-2 {
321
+ -ms-flex: 0 0 16.66666667%;
322
+ flex: 0 0 16.66666667%;
323
+ max-width: 16.66666667%;
324
+ }
325
+
326
+ .col-md-3 {
327
+ -ms-flex: 0 0 25%;
328
+ flex: 0 0 25%;
329
+ max-width: 25%;
330
+ }
331
+
332
+ .col-md-4 {
333
+ -ms-flex: 0 0 33.33333333%;
334
+ flex: 0 0 33.33333333%;
335
+ max-width: 33.33333333%;
336
+ }
337
+
338
+ .col-md-5 {
339
+ -ms-flex: 0 0 41.66666667%;
340
+ flex: 0 0 41.66666667%;
341
+ max-width: 41.66666667%;
342
+ }
343
+
344
+ .col-md-6 {
345
+ -ms-flex: 0 0 50%;
346
+ flex: 0 0 50%;
347
+ max-width: 50%;
348
+ }
349
+
350
+ .col-md-7 {
351
+ -ms-flex: 0 0 58.33333333%;
352
+ flex: 0 0 58.33333333%;
353
+ max-width: 58.33333333%;
354
+ }
355
+
356
+ .col-md-8 {
357
+ -ms-flex: 0 0 66.66666667%;
358
+ flex: 0 0 66.66666667%;
359
+ max-width: 66.66666667%;
360
+ }
361
+
362
+ .col-md-9 {
363
+ -ms-flex: 0 0 75%;
364
+ flex: 0 0 75%;
365
+ max-width: 75%;
366
+ }
367
+
368
+ .col-md-10 {
369
+ -ms-flex: 0 0 83.33333333%;
370
+ flex: 0 0 83.33333333%;
371
+ max-width: 83.33333333%;
372
+ }
373
+
374
+ .col-md-11 {
375
+ -ms-flex: 0 0 91.66666667%;
376
+ flex: 0 0 91.66666667%;
377
+ max-width: 91.66666667%;
378
+ }
379
+
380
+ .col-md-12 {
381
+ -ms-flex: 0 0 100%;
382
+ flex: 0 0 100%;
383
+ max-width: 100%;
384
+ }
385
+
386
+ .text-center {
387
+ text-align: center !important;
388
+ }
389
+
390
+ .pt-1 {
391
+ padding-top: 0.25rem;
392
+ }
393
+
394
+ .pt-2 {
395
+ padding-top: 0.5rem;
396
+ }
397
+
398
+ .pt-3 {
399
+ padding-top: 1rem;
400
+ }
401
+
402
+ .pt-4 {
403
+ padding-top: 1.5rem;
404
+ }
405
+
406
+ .pt-5 {
407
+ padding-top: 3rem;
408
+ }
409
+
410
+ .pb-1 {
411
+ padding-bottom: 0.25rem;
412
+ }
413
+
414
+ .pb-2 {
415
+ padding-bottom: 0.5rem;
416
+ }
417
+
418
+ .pb-3 {
419
+ padding-bottom: 1rem;
420
+ }
421
+
422
+ .pb-4 {
423
+ padding-bottom: 1.5rem;
424
+ }
425
+
426
+ .pb-5 {
427
+ padding-bottom: 3rem;
428
+ }
429
+
430
+ //
431
+ .mt-1 {
432
+ margin-top: 0.25rem;
433
+ }
434
+
435
+ .mt-2 {
436
+ margin-top: 0.5rem;
437
+ }
438
+
439
+ .mt-3 {
440
+ margin-top: 1rem;
441
+ }
442
+
443
+ .mt-4 {
444
+ margin-top: 1.5rem;
445
+ }
446
+
447
+ .mt-5 {
448
+ margin-top: 3rem;
449
+ }
450
+
451
+ .mb-1 {
452
+ margin-bottom: 0.25rem;
453
+ }
454
+
455
+ .mb-2 {
456
+ margin-bottom: 0.5rem !important;
457
+ }
458
+
459
+ .mb-3 {
460
+ margin-bottom: 1rem;
461
+ }
462
+
463
+ .mb-4 {
464
+ margin-bottom: 1.5rem;
465
+ }
466
+
467
+ .mb-5 {
468
+ margin-bottom: 3rem;
469
+ }
470
+
471
+ .p-0 {
472
+ padding: 0;
473
+ }
474
+
475
+ .m-0 {
476
+ margin: 0;
477
+ }
478
+
479
+ .text-right {
480
+ text-align: right;
481
+ }
482
+
483
+ .text-left {
484
+ text-align: left;
485
+ }
486
+
487
+ .table-responsive {
488
+ display: block;
489
+ width: 100%;
490
+ overflow-x: auto;
491
+ -webkit-overflow-scrolling: touch;
492
+ -ms-overflow-style: -ms-autohiding-scrollbar;
493
+ }
494
+
495
+ .ag-sequence-generator-config ag-sequence-generator-config,
496
+ .ag-sequence-generator-config > .example-box {
497
+ & .mat-form-field-label-wrapper,
498
+ & .mat-form-field-underline {
499
+ display: none !important;
500
+ }
501
+
502
+ & .mat-form-field-wrapper {
503
+ padding-bottom: 0 !important;
504
+ }
505
+
506
+ & .mat-form-field-appearance-fill .mat-form-field-infix {
507
+ padding: 0 !important;
508
+ }
509
+
510
+ & mat-form-field .mat-form-field-flex {
511
+ padding: 0 0 10px 0 !important;
512
+ }
513
+
514
+ & .mat-form-field-appearance-fill .mat-select-arrow-wrapper {
515
+ transform: translateY(0) !important;
516
+ }
517
+
518
+ & .mat-select-arrow {
519
+ margin: 0 15px !important;
520
+ }
521
+ }
522
+
523
+ @media screen and (max-width: 991px) {
524
+ .col-xs-1 {
525
+ -ms-flex: 0 0 8.33333333%;
526
+ flex: 0 0 8.33333333%;
527
+ max-width: 8.33333333%;
528
+ }
529
+ .col-xs-2 {
530
+ -ms-flex: 0 0 16.66666667%;
531
+ flex: 0 0 16.66666667%;
532
+ max-width: 16.66666667%;
533
+ }
534
+ .col-xs-3 {
535
+ -ms-flex: 0 0 25%;
536
+ flex: 0 0 25%;
537
+ max-width: 25%;
538
+ }
539
+ .col-xs-4 {
540
+ -ms-flex: 0 0 33.33333333%;
541
+ flex: 0 0 33.33333333%;
542
+ max-width: 33.33333333%;
543
+ }
544
+ .col-xs-5 {
545
+ -ms-flex: 0 0 41.66666667%;
546
+ flex: 0 0 41.66666667%;
547
+ max-width: 41.66666667%;
548
+ }
549
+ .col-xs-6 {
550
+ -ms-flex: 0 0 50%;
551
+ flex: 0 0 50%;
552
+ max-width: 50%;
553
+ }
554
+ .col-xs-7 {
555
+ -ms-flex: 0 0 58.33333333%;
556
+ flex: 0 0 58.33333333%;
557
+ max-width: 58.33333333%;
558
+ }
559
+ .col-xs-8 {
560
+ -ms-flex: 0 0 66.66666667%;
561
+ flex: 0 0 66.66666667%;
562
+ max-width: 66.66666667%;
563
+ }
564
+ .col-xs-9 {
565
+ -ms-flex: 0 0 75%;
566
+ flex: 0 0 75%;
567
+ max-width: 75%;
568
+ }
569
+ .col-xs-10 {
570
+ -ms-flex: 0 0 83.33333333%;
571
+ flex: 0 0 83.33333333%;
572
+ max-width: 83.33333333%;
573
+ }
574
+ .col-xs-11 {
575
+ -ms-flex: 0 0 91.66666667%;
576
+ flex: 0 0 91.66666667%;
577
+ max-width: 91.66666667%;
578
+ }
579
+ .col-xs-12 {
580
+ -ms-flex: 0 0 100%;
581
+ flex: 0 0 100%;
582
+ max-width: 100%;
583
+ }
584
+ }
585
+
586
+ .mat-form-field-wrapper {
587
+ padding-bottom: 12px !important;
588
+ }
589
+
590
+ .form-control {
591
+ display: block;
592
+ width: 100%;
593
+ padding: .375rem .75rem;
594
+ font-size: 14px;
595
+ line-height: 1.5;
596
+ color: #495057;
597
+ background-color: #fff;
598
+ background-clip: padding-box;
599
+ border: 1px solid #ced4da;
600
+ border-radius: .25rem;
601
+ transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
602
+ overflow: visible;
603
+ margin: 0;
604
+ box-sizing: border-box;
605
+ }
606
+
607
+ ag-sequence-generator-config .input-group {
608
+ & .mat-select-value {
609
+ max-width: 100%;
610
+ }
611
+
612
+ & .mat-select-arrow-wrapper {
613
+ display: none;
614
+ }
615
+ }
616
+
617
+ /*.normal-appearance{
618
+ & .mat-select-arrow-wrapper{
619
+ display: block !important;
620
+ position: absolute;
621
+ top: 5px;
622
+ right: 0;
623
+ }
624
+ & .mat-select-trigger{
625
+ width: 100%;
626
+ }
627
+ }*/
628
+ .example-list > div > .example-box:last-child {
629
+ padding-bottom: 0;
630
+ }
631
+
632
+ .main-mat-form-field .mat-select-value {
633
+ text-align: left;
634
+ padding: 0 0 0 15px;
635
+ }
636
+
637
+ .w-100 {
638
+ width: 100% !important;
639
+ }
640
+
641
+ mat-form-field.error-field-border .mat-select-arrow {
642
+ color: rgba(255, 0, 0, 0.54) !important;
643
+ }
644
+
645
+ ag-sequence-generator-config {
646
+ padding-top: 7px;
647
+ }
648
+
649
+ ag-sequence-generator-config .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background, .mat-checkbox-checked.mat-accent .mat-checkbox-background {
650
+ background-color: #a0dbdd;
651
+ }
652
+
653
+ ag-sequence-generator-config .mat-expansion-panel:first-of-type {
654
+ border-top-right-radius: 0 !important;
655
+ border-top-left-radius: 0 !important;
656
+ }
657
+
658
+ [dir=rtl] .text-right {
659
+ text-align: left !important;
660
+ }
661
+
662
+ [dir=rtl] .text-left {
663
+ text-align: right !important;
664
+ }
665
+
666
+ .error-input {
667
+ & .mat-form-field-outline-end {
668
+ border: 1px solid red !important;
669
+ border-left-style: none !important;
670
+ }
671
+
672
+ & .mat-form-field-outline-start {
673
+ border: 1px solid red !important;
674
+ border-right-style: none !important;
675
+ }
676
+ }
677
+
678
+ .rtl {
679
+ & .error-input {
680
+ & .mat-form-field-outline-end {
681
+ border: 1px solid red !important;
682
+ border-right-style: none !important;
683
+ }
684
+
685
+ & .mat-form-field-outline-start {
686
+ border: 1px solid red !important;
687
+ border-left-style: none !important;
688
+ }
689
+
690
+ & .small-box .icon {
691
+ left: 25px;
692
+ right: unset !important;
693
+ }
694
+ }
695
+ }
696
+
697
+ ag-sequence-generator-config mat-panel-description {
698
+ & .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb {
699
+ background-color: var(--primary-color);
700
+ }
701
+
702
+ & .mat-slide-toggle.mat-checked .mat-slide-toggle-bar {
703
+ background-color: #a0dbddc2;
704
+ }
705
+ }
706
+
707
+ @media only screen and (max-width: 991px) {
708
+ ag-sequence-generator-config .mat-expansion-panel-body {
709
+ padding: 0 10px 16px;
710
+ }
711
+ }
712
+
713
+ .rtl ag-sequence-generator-config {
714
+ & .new-sequence {
715
+ text-align: right;
716
+
717
+ & a span:last-child {
718
+ float: right;
719
+ }
720
+ }
721
+
722
+ & mat-panel-description .mat-slide-toggle {
723
+ margin-left: 0;
724
+ margin-right: 5px;
725
+ }
726
+
727
+ & .card .form-group a {
728
+ float: left;
729
+ }
730
+
731
+ & .input-group-text {
732
+ font-size: 14px;
733
+ border-top-right-radius: 0.25rem !important;
734
+ border-bottom-right-radius: 0.25rem !important;
735
+ border-top-left-radius: 0 !important;
736
+ border-bottom-left-radius: 0 !important;
737
+ padding-top: 8px;
738
+ }
739
+
740
+ & .input-group .mat-select-value {
741
+ text-align: center !important;
742
+ font-size: 12px;
743
+ }
744
+
745
+ & .normal-appearance .mat-select-arrow-wrapper {
746
+ right: unset !important;
747
+ left: 0 !important;
748
+ }
749
+
750
+ & .pr-8px {
751
+ padding-right: 0 !important;
752
+ padding-left: 10px !important;
753
+ }
754
+
755
+ & .pl-8px {
756
+ padding-right: 10px !important;
757
+ padding-left: 0 !important;
758
+ }
759
+
760
+ .dateTimeRealTime {
761
+ padding-left: 0 !important;
762
+ padding-right: 10px !important;
763
+ }
764
+
765
+ & .table {
766
+ width: calc(100% - 1px);
767
+ margin: 0 auto;
768
+ }
769
+
770
+ mat-panel-description button {
771
+ font-family: 'Cairo';
772
+ }
773
+
774
+ & .card .mat-select-trigger {
775
+ padding: 0 15px 0 0;
776
+ }
777
+
778
+ & .new-tag {
779
+ margin-left: 0;
780
+ margin-right: 5px;
781
+ }
782
+ }
783
+
784
+ @media only screen and (max-width: 991px) {
785
+ ag-sequence-generator-config mat-expansion-panel mat-expansion-panel-header {
786
+ & .mat-content mat-panel-description {
787
+ display: none;
788
+ }
789
+
790
+ &.mat-expanded {
791
+ & mat-panel-description {
792
+ display: flex;
793
+ justify-content: space-around;
794
+ }
795
+
796
+ & .mat-content {
797
+ display: block;
798
+
799
+ & mat-panel-title {
800
+ display: block;
801
+ margin: 0;
802
+ margin-bottom: 10px;
803
+ margin-top: 15px;
804
+ }
805
+ }
806
+ }
807
+ }
808
+ }
809
+
810
+ @media only screen and (max-width: 991px) {
811
+ .rtl ag-sequence-generator-config {
812
+ & .input-group-text {
813
+ border-radius: 4px !important;
814
+ }
815
+
816
+ & .pt-0-xs > div:first-child {
817
+ padding-left: 10px !important;
818
+ padding-right: 10px !important;
819
+ }
820
+
821
+ }
822
+ }
823
+
824
+ ag-recaptcha.error > re-captcha > div {
825
+ border: 1px solid red;
826
+ border-radius: 5px;
827
+ }
828
+
829
+ .toggle-arraw-auto-complete {
830
+ content: " ";
831
+ width: 0;
832
+ height: 0;
833
+ border-left: 5px solid transparent;
834
+ border-right: 5px solid transparent;
835
+ border-top: 5px solid;
836
+ margin: 0;
837
+ cursor: pointer;
838
+ position: absolute;
839
+ right: 5px;
840
+ top: 16px;
841
+ color: rgba(0, 0, 0, 0.54);
842
+ }
843
+
844
+ .rtl .toggle-arraw-auto-complete {
845
+ right: unset;
846
+ left: 5px;
847
+ }
848
+
849
+ ag-currencies {
850
+ & .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb {
851
+ background-color: var(--primary-color);
852
+ }
853
+
854
+ & .mat-slide-toggle.mat-checked .mat-slide-toggle-bar {
855
+ background-color: rgba(0, 0, 0, 0.10);
856
+ }
857
+
858
+ & .mat-form-field-underline {
859
+ display: none;
860
+ }
861
+
862
+ & .mat-form-field-flex {
863
+ padding: 0 !important;
864
+ }
865
+
866
+ & .mat-select-arrow-wrapper {
867
+ transform: translateY(0) !important;
868
+ padding-right: 10px;
869
+ }
870
+
871
+ & .form-control {
872
+ height: 41px;
873
+ background-color: #f5f5f5;
874
+ border: 0;
875
+ }
876
+
877
+ & .error-field.form-control {
878
+ height: 43px;
879
+ }
880
+
881
+ & .error-field .mat-form-field-wrapper .mat-form-field-flex {
882
+ border: 1px solid #ea4335;
883
+ border-radius: 5px;
884
+ }
885
+ }
886
+
887
+ #full-page {
888
+ min-height: 100vh;
889
+ }
890
+
891
+ .crop-image mat-dialog-container {
892
+ padding: 0 !important;
893
+ position: relative;
894
+ overflow: hidden !important;
895
+
896
+ & > h2 {
897
+ background-color: white;
898
+ margin: 0;
899
+ padding: 10px 24px;
900
+ font-size: 22px;
901
+ color: #505050;
902
+ font-weight: 500;
903
+ }
904
+
905
+ & > span {
906
+ position: absolute;
907
+ top: 2px;
908
+ right: 24px;
909
+ font-size: 26px;
910
+ font-weight: 500;
911
+ color: #505050;
912
+ cursor: pointer;
913
+ }
914
+
915
+ & mat-dialog-actions {
916
+ background-color: white;
917
+ display: flex;
918
+ padding: 10px 24px;
919
+ padding-top: 0 !important;
920
+ padding-bottom: 20px !important;
921
+ }
922
+
923
+ & mat-dialog-content {
924
+ padding: 0;
925
+
926
+ & .cr-slider-wrap {
927
+ & .cr-slider {
928
+ -webkit-appearance: none;
929
+ width: 100%;
930
+ height: auto;
931
+ background: #ffffff;
932
+ outline: none;
933
+ opacity: 1;
934
+ -webkit-transition: .2s;
935
+ transition: opacity .2s;
936
+ padding-bottom: 0;
937
+ padding-top: 0;
938
+ }
939
+
940
+ & .cr-slider:hover {
941
+ opacity: 1;
942
+ }
943
+
944
+ & .cr-slider::-webkit-slider-thumb {
945
+ -webkit-appearance: none;
946
+ appearance: none;
947
+ width: 25px;
948
+ height: 25px;
949
+ background: #7de5b3;
950
+ cursor: pointer;
951
+ margin-top: -10px;
952
+ }
953
+
954
+ & .cr-slider::-moz-range-thumb {
955
+ margin-top: -10px;
956
+ width: 25px;
957
+ height: 25px;
958
+ background: #7de5b3;
959
+ cursor: pointer;
960
+ }
961
+ }
962
+ }
963
+ }
964
+
965
+ .croppie-container {
966
+ & .cr-slider-wrap {
967
+ width: 90% !important;
968
+ margin: 5px auto !important;
969
+
970
+ & .cr-slider {
971
+ width: 100%;
972
+ margin: 0;
973
+ }
974
+ }
975
+ }
976
+
977
+ .crop-image .mat-dialog-container,
978
+ .croppie-container .cr-boundary {
979
+ background: #000;
980
+ }
981
+
982
+ ag-home {
983
+ & .mat-drawer-inner-container {
984
+ //overflow: hidden !important;
985
+ }
986
+
987
+ & .mat-drawer.mat-drawer-side {
988
+ position: relative;
989
+ float: left;
990
+ height: 100%;
991
+ }
992
+
993
+ & .mat-drawer-inner-container > div {
994
+ max-width: 100% !important;
995
+ box-shadow: 0 0 0 0 #000;
996
+ }
997
+
998
+ & mat-drawer {
999
+ display: none !important;
1000
+ }
1001
+
1002
+ & mat-drawer.mat-drawer-opened {
1003
+ display: block !important;
1004
+
1005
+ & .mat-tab-label .mat-tab-label-content {
1006
+ font-size: 16px;
1007
+ }
1008
+ }
1009
+ }
1010
+
1011
+ .rtl ag-home .mat-drawer.mat-drawer-side {
1012
+ float: right !important;
1013
+ }
1014
+
1015
+ mat-drawer,
1016
+ .mat-elevation-z8 {
1017
+ box-shadow: 0 0 10px .5px #e0e0e0;
1018
+ }
1019
+
1020
+ ag-home mat-drawer-container > mat-drawer > .mat-drawer-inner-container > div > mat-tab-group {
1021
+ width: 100%;
1022
+ }
1023
+
1024
+ .overflow-hidden {
1025
+ overflow: hidden !important;
1026
+ }
1027
+
1028
+ /* in your styles.css or component styles (use ::ng-deep) */
1029
+ ::ng-deep .mdc-floating-label--required {
1030
+ color: red; /* label text */
1031
+ }
1032
+
1033
+ ::ng-deep .mdc-floating-label--required::after {
1034
+ color: red; /* asterisk */
1035
+ margin-left: 2px;
1036
+ }
1037
+
1038
+ .arrow_drop_down_autocomplete {
1039
+ position: absolute;
1040
+ right: 0;
1041
+ top: 7px;
1042
+ color: rgba(0, 0, 0, 0.54);
1043
+ cursor: pointer;
1044
+ font-size: 28px;
1045
+ }
1046
+
1047
+ .rtl {
1048
+ & .arrow_drop_down_autocomplete {
1049
+ right: unset;
1050
+ left: 0;
1051
+ }
1052
+
1053
+ & ag-currencies {
1054
+ & .pl-0 {
1055
+ padding-left: 10px !important;
1056
+ padding-right: 0 !important;
1057
+ }
1058
+
1059
+ & .pr-0 {
1060
+ padding-left: 0 !important;
1061
+ padding-right: 10px !important;
1062
+ }
1063
+
1064
+ & .main-mat-form-field .mat-select-value {
1065
+ text-align: right;
1066
+ padding: 0 15px 0 15px;
1067
+ }
1068
+
1069
+ & .mat-select-arrow-wrapper {
1070
+ padding-right: 0;
1071
+ padding-left: 10px;
1072
+ }
1073
+
1074
+ & .head-control button {
1075
+ margin-left: 0;
1076
+ margin-right: 5px;
1077
+ }
1078
+
1079
+ & .head-control > span {
1080
+ margin-right: 0;
1081
+ margin-left: 5px;
1082
+ }
1083
+ }
1084
+
1085
+ & .group-input {
1086
+ & .col-md-5 {
1087
+ padding-right: 15px !important;
1088
+ padding-left: 0;
1089
+ }
1090
+ }
1091
+
1092
+ &.crop-image {
1093
+ & mat-dialog-container {
1094
+ & > h2 {
1095
+ text-align: right;
1096
+ }
1097
+
1098
+ & > span {
1099
+ right: unset;
1100
+ left: 24px;
1101
+ }
1102
+
1103
+ & mat-dialog-content .cr-slider-wrap .cr-slider {
1104
+ direction: rtl;
1105
+ }
1106
+
1107
+ & mat-dialog-actions {
1108
+ flex-direction: row-reverse;
1109
+ }
1110
+ }
1111
+ }
1112
+ }
1113
+
1114
+ @media only screen and (max-width: 600px) {
1115
+ ag-home mat-drawer-container > mat-drawer > .mat-drawer-inner-container > div > mat-tab-group {
1116
+ height: 100%;
1117
+ width: 275px;
1118
+ }
1119
+ .signature-img-container span {
1120
+ left: unset !important;
1121
+ right: 10px;
1122
+ }
1123
+ .xs-pl {
1124
+ padding-right: 15px !important;
1125
+ padding-left: 0;
1126
+ }
1127
+ }
1128
+
1129
+ .preview_button {
1130
+ background-color: var(--primary-color-2nd) !important;
1131
+ cursor: pointer;
1132
+ color: white !important;
1133
+ }
1134
+
1135
+ .enabled_status {
1136
+ background-color: green !important;
1137
+ cursor: pointer;
1138
+ color: white !important;
1139
+ }
1140
+
1141
+ .disabled_status {
1142
+ background-color: red !important;
1143
+ cursor: pointer;
1144
+ color: white !important;
1145
+ }
1146
+
1147
+
1148
+ .mat-form-field-appearance-outline .mat-form-field-outline {
1149
+ background-color: white;
1150
+ border-radius: 5px;
1151
+ margin: 3px
1152
+ }
1153
+
1154
+ .hidePanelBody .mat-expansion-panel-body {
1155
+ padding: 0 !important;
1156
+ }
1157
+
1158
+
1159
+ ::-webkit-scrollbar {
1160
+ width: 10px;
1161
+ }
1162
+
1163
+ ::-webkit-scrollbar-thumb {
1164
+ background: #939393;
1165
+ border-radius: 10px;
1166
+ }
1167
+
1168
+
1169
+
1170
+
1171
+ .btn-none-background-primary {
1172
+ background: transparent;
1173
+ color: var(--primary-color-2nd);
1174
+ height: 40px;
1175
+ width: 130px;
1176
+ border: var(--primary-color-2nd) solid 1px !important;
1177
+ border-radius: 5px;
1178
+ box-shadow: none !important;
1179
+ font-size: 16px;
1180
+ cursor: pointer;
1181
+ }
1182
+
1183
+ .btn-background-primary {
1184
+ background: var(--primary-color-2nd) !important;
1185
+ color: white !important;
1186
+ height: 40px;
1187
+ width: 130px;
1188
+ border-radius: 5px;
1189
+ box-shadow: none !important;
1190
+ font-size: 16px;
1191
+ cursor: pointer;
1192
+ }
1193
+
1194
+ .main-title {
1195
+ font-style: normal;
1196
+ font-weight: 700;
1197
+ font-size: 18px;
1198
+ line-height: 24px;
1199
+ color: var(--accent-color);
1200
+ }
1201
+
1202
+ .main-table-th {
1203
+ font-style: normal;
1204
+ font-weight: 400;
1205
+ font-size: 14px;
1206
+ line-height: 24px;
1207
+ background-color: var(--primary-color-2nd);
1208
+ color: white;
1209
+ }
1210
+
1211
+ .main-table-td {
1212
+ font-style: normal;
1213
+ font-weight: 400;
1214
+ font-size: 14px;
1215
+ line-height: 24px;
1216
+ }
1217
+
1218
+ .main-search {
1219
+ height: 48px;
1220
+ background-color: #FFFFFF;
1221
+ padding: 0 2px;
1222
+ border: #D1D1D1 solid 1px;
1223
+ border-radius: 5px;
1224
+ }
1225
+
1226
+ .main-search-field {
1227
+ font-style: normal;
1228
+ font-weight: 400;
1229
+ font-size: 14px;
1230
+ line-height: 24px;
1231
+ flex: none;
1232
+ margin: 2px 7px;
1233
+ order: 0;
1234
+ flex-grow: 0;
1235
+ color: #D1D1D1;
1236
+ background: transparent !important;
1237
+ }
1238
+
1239
+ .main-search-ctrl {
1240
+ width: 100%;
1241
+ height: 40px;
1242
+ border: none;
1243
+ background: transparent;
1244
+ color: var(--primary-color) !important;
1245
+ outline: none;
1246
+ font-style: normal;
1247
+ font-weight: 400;
1248
+ font-size: 14px;
1249
+ line-height: 24px;
1250
+ -webkit-appearance: none;
1251
+ }
1252
+
1253
+ .main-search-ctrl::placeholder {
1254
+ color: #D1D1D1 !important;
1255
+ }
1256
+
1257
+ .main-search-advanced {
1258
+ width: 100%;
1259
+ color: #D1D1D1 !important;
1260
+ margin: 7px
1261
+ }
1262
+
1263
+ .main-search-advanced span {
1264
+ cursor: pointer;
1265
+ }
1266
+
1267
+ .main-border-left {
1268
+ margin: auto;
1269
+ border-left: #D1D1D1 solid 1px;
1270
+ height: 100%;
1271
+ font-style: normal;
1272
+ font-weight: 400;
1273
+ font-size: 14px;
1274
+ line-height: 24px;
1275
+ color: #9B9B9B;
1276
+ }
1277
+
1278
+ .main-border-right {
1279
+ margin: auto;
1280
+ border-right: #D1D1D1 solid 1px;
1281
+ height: 100%;
1282
+ font-style: normal;
1283
+ font-weight: 400;
1284
+ font-size: 14px;
1285
+ line-height: 24px;
1286
+ color: #9B9B9B;
1287
+ }
1288
+
1289
+ .main-content-center {
1290
+ justify-content: center;
1291
+ align-items: center;
1292
+ }
1293
+
1294
+
1295
+ .Completed, .Updated {
1296
+ @extend .wfStatus;
1297
+ background-color: #E9FFE9 !important;
1298
+ color: #15AB51 !important;
1299
+ }
1300
+
1301
+ .Terminated, .Default {
1302
+ @extend .wfStatus-style;
1303
+ background-color: #FFEDED !important;
1304
+ color: #FF7878 !important;
1305
+ }
1306
+
1307
+ .Create {
1308
+ @extend .wfStatus-style;
1309
+ background-color: #E4EEFF !important;
1310
+ color: #1C355E !important;
1311
+ }
1312
+
1313
+ .wfStatus {
1314
+ @extend .wfStatus-style;
1315
+ background-color: #F7F0FF;
1316
+ color: #652CAC;
1317
+ }
1318
+
1319
+ .New {
1320
+ @extend .stateType;
1321
+ background-color: #1C355E !important;
1322
+ }
1323
+
1324
+ .COMPLETED {
1325
+ @extend .stateType;
1326
+ background-color: #42454a !important;
1327
+ }
1328
+ .PENDING {
1329
+ @extend .stateType;
1330
+ background-color: #10451d !important;
1331
+ }
1332
+
1333
+ .stateType {
1334
+ @extend .wfStatus-style;
1335
+ background-color: #F7F0FF;
1336
+ color: #E4EEFF !important;
1337
+ }
1338
+
1339
+ @media (max-width: 1024px) {
1340
+ .wfStatus-style {
1341
+ font-size: 9px !important;
1342
+ }
1343
+ }
1344
+
1345
+ .wfStatus-style {
1346
+ border-radius: 5px;
1347
+ font-style: normal;
1348
+ font-weight: 400;
1349
+ font-size: 12px;
1350
+ line-height: 0 !important;
1351
+ height: 28px;
1352
+ }
1353
+
1354
+
1355
+ .Cleared, .Reported {
1356
+ @extend .integStatus;
1357
+ background-color: #E9FFE9 !important;
1358
+ color: #15AB51 !important;
1359
+ }
1360
+
1361
+ .UnCleared, .Default {
1362
+ @extend .integStatus;
1363
+ background-color: #FFEDED !important;
1364
+ color: red !important;
1365
+ }
1366
+
1367
+ .Signed {
1368
+ @extend .integStatus;
1369
+ background-color: #FFEDED !important;
1370
+ color: blue !important;
1371
+ }
1372
+
1373
+ .UnReported {
1374
+ @extend .integStatus;
1375
+ background-color: #FFEDED !important;
1376
+ color: blue !important;
1377
+ }
1378
+
1379
+ .integStatus {
1380
+ @extend .integStatus-style;
1381
+
1382
+ background-color: #F7F0FF;
1383
+ color: #652CAC;
1384
+ }
1385
+
1386
+ .integStatus-style {
1387
+ border-radius: 5px;
1388
+ font-style: normal;
1389
+ font-weight: 400;
1390
+ font-size: 12px;
1391
+ line-height: 0 !important;
1392
+ height: 28px;
1393
+ }
1394
+
1395
+
1396
+ .ngx-pagination {
1397
+ float: right;
1398
+ }
1399
+
1400
+ .ngx-pagination a {
1401
+ text-align: center !important;
1402
+ border-radius: 5px !important;
1403
+ font-weight: 400 !important;
1404
+ font-size: 14px;
1405
+ }
1406
+
1407
+ .ngx-pagination li {
1408
+ margin: 0 6px !important;
1409
+ }
1410
+
1411
+ .ngx-pagination .current {
1412
+ background: #00ABC8 !important;
1413
+ border-radius: 5px !important;
1414
+ text-align: center !important;
1415
+ }
1416
+
1417
+
1418
+ .ngx-pagination .pagination-next a::after, .ngx-pagination .pagination-next.disabled::after {
1419
+ content: '' !important;
1420
+ }
1421
+
1422
+ .ngx-pagination .pagination-previous a::before, .ngx-pagination .pagination-previous.disabled::before {
1423
+ content: '' !important;
1424
+ }
1425
+
1426
+
1427
+ .toolbar-pdf-invoice {
1428
+ height: 80px;
1429
+ background: whitesmoke;
1430
+ border-bottom: #d9d9d9 solid 1px;
1431
+
1432
+ .button-check-circle {
1433
+ border: green solid 1px;
1434
+ cursor: default;
1435
+ }
1436
+
1437
+ .button-warning {
1438
+ border: #FFD42A solid 1px;
1439
+ cursor: default;
1440
+ }
1441
+
1442
+ .status {
1443
+ justify-content: start;
1444
+ font-size: 16px;
1445
+ padding: 0 5px;
1446
+
1447
+ .check-circle {
1448
+ color: green;
1449
+ padding: 0 3px;
1450
+ }
1451
+
1452
+ .warning {
1453
+ color: #FFD42A;
1454
+ padding: 0 3px;
1455
+ }
1456
+
1457
+ }
1458
+
1459
+ .action {
1460
+ justify-content: end !important;
1461
+
1462
+ }
1463
+
1464
+ .example-spacer {
1465
+ flex: 1 1 auto;
1466
+ text-align: center;
1467
+ }
1468
+
1469
+ }
1470
+
1471
+ .mat-tab-label-active {
1472
+ color: var(--primary-color);
1473
+ }
1474
+
1475
+ [dir=ltr] .border-not-answer {
1476
+ border-left: red solid 3px !important;
1477
+ padding: 0 5px;
1478
+ }
1479
+
1480
+ [dir=rtl] .border-not-answer {
1481
+ border-right: red solid 3px !important;
1482
+ padding: 0 5px;
1483
+ }
1484
+
1485
+ .question {
1486
+ background: #e2edff;
1487
+ }
1488
+
1489
+ .answer {
1490
+ background: #E2FBFF;
1491
+ }
1492
+
1493
+ hr.divider {
1494
+ border-top: 1px solid #d6d1d1;
1495
+ width: 100%;
1496
+ }
1497
+
1498
+ .Cleared, .Reported {
1499
+ @extend .integStatus;
1500
+ background-color: #E9FFE9 !important;
1501
+ color: #15AB51 !important;
1502
+ }
1503
+
1504
+ .UnCleared, .Default {
1505
+ @extend .integStatus;
1506
+ background-color: #FFEDED !important;
1507
+ color: red !important;
1508
+ }
1509
+
1510
+ .Signed {
1511
+ @extend .integStatus;
1512
+ background-color: #FFEDED !important;
1513
+ color: blue !important;
1514
+ }
1515
+
1516
+ .UnReported {
1517
+ @extend .integStatus;
1518
+ background-color: #FFEDED !important;
1519
+ color: blue !important;
1520
+ }
1521
+
1522
+ .integStatus {
1523
+ @extend .integStatus-style;
1524
+
1525
+ background-color: #F7F0FF;
1526
+ color: #652CAC;
1527
+ }
1528
+
1529
+ .integStatus-style {
1530
+ border-radius: 5px;
1531
+ font-style: normal;
1532
+ font-weight: 400;
1533
+ font-size: 12px;
1534
+ line-height: 0 !important;
1535
+ height: 28px;
1536
+ }
1537
+
1538
+ .searchbox-custom-field .mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__leading,
1539
+ .searchbox-custom-field .mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__notch,
1540
+ .searchbox-custom-field .mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing {
1541
+ border:none;
1542
+ }
1543
+
1544
+
1545
+
1546
+ .baseTable {
1547
+ &__marginColumn {
1548
+ flex-direction: column;
1549
+ }
1550
+
1551
+ &__detailsColumn {
1552
+ .advancedSearchLg {
1553
+ padding-left: 10px;
1554
+ font-weight: 400;
1555
+ font-size: 16px;
1556
+ color: var(--primary-color-2nd);
1557
+ cursor: pointer;
1558
+
1559
+ &__details-lt-sm {
1560
+ margin-top: 5px;
1561
+ text-align: center;
1562
+ }
1563
+
1564
+ &__icon {
1565
+ margin-top: 5px;
1566
+ width: 20px
1567
+ }
1568
+ }
1569
+
1570
+ .border-default-close {
1571
+ border: #D9D9D9 solid 1px;
1572
+ border-radius: 5px;
1573
+ }
1574
+
1575
+ .border-advanced-search{
1576
+ display: inline-block;
1577
+ position: relative;
1578
+ border-left: solid 1px #D9D9D9;
1579
+ border-right: solid 1px #D9D9D9;
1580
+ border-top: solid 1px #D9D9D9;
1581
+ border-top-left-radius: 5px;
1582
+ border-top-right-radius: 5px;
1583
+ }
1584
+ .advancedSearchSm {
1585
+ &__open {
1586
+ height: 48px;
1587
+
1588
+ &__details {
1589
+ margin: auto;
1590
+
1591
+ &__icon {
1592
+ width: 20px;
1593
+ padding: 0 5px
1594
+ }
1595
+ }
1596
+ }
1597
+ }
1598
+
1599
+ .filterBuilder {
1600
+ display: inline-block;
1601
+ position: relative;
1602
+ border-left: solid 1px #D9D9D9;
1603
+ border-right: solid 1px #D9D9D9;
1604
+
1605
+ &::before {
1606
+ content: "";
1607
+ position: absolute;
1608
+ top: 0;
1609
+ height: 5px;
1610
+ width: 85.2%;
1611
+ border-top: solid 1px #D9D9D9;
1612
+ }
1613
+
1614
+ &::after {
1615
+ content: "";
1616
+ position: absolute;
1617
+ width: 100%;
1618
+ height: 0;
1619
+ border-bottom: solid 1px #D9D9D9;
1620
+ }
1621
+ }
1622
+
1623
+ .mainTable {
1624
+ margin-top: 2vh;
1625
+
1626
+ table thead {
1627
+ outline: #D1D1D1 solid 1px;
1628
+ height: 48px;
1629
+ background: #F7F7F7 !important;
1630
+ border: 1px solid #D1D1D1;
1631
+ border-radius: 5px;
1632
+ }
1633
+
1634
+ &__th {
1635
+ .mat-sort-header-arrow {
1636
+ color: var(--primary-color-2nd) !important;
1637
+ }
1638
+ }
1639
+
1640
+ &__td {
1641
+ font-style: normal;
1642
+ font-weight: 400;
1643
+ font-size: 14px;
1644
+ line-height: 24px;
1645
+
1646
+ &__text-secondary {
1647
+ font-size: medium;
1648
+ }
1649
+
1650
+ &__icon-darkorange {
1651
+ color: darkorange;
1652
+ }
1653
+
1654
+ &__icon-red {
1655
+ color: red;
1656
+ }
1657
+
1658
+ &__icon-green {
1659
+ color: green;
1660
+ }
1661
+
1662
+ &__currency {
1663
+ padding-right: 3px;
1664
+ padding-left: 3px;
1665
+ }
1666
+
1667
+ &__property {
1668
+ color: red;
1669
+ }
1670
+ }
1671
+
1672
+ &__mat-cell {
1673
+ height: 60px !important;
1674
+ font-style: normal !important;
1675
+ font-weight: 400 !important;
1676
+ font-size: 14px !important;
1677
+ line-height: 24px !important;
1678
+ color: #4E4E4E !important;
1679
+ }
1680
+
1681
+ &__mat-header-row {
1682
+ box-shadow: none !important;
1683
+ }
1684
+
1685
+ &__mat-sort-header-indicator {
1686
+ color: var(--primary-color-2nd) !important;
1687
+ }
1688
+
1689
+ &__mat-sort-header-stem {
1690
+ color: var(--primary-color-2nd) !important;
1691
+ }
1692
+
1693
+ &__highlight {
1694
+ background: #ffe9bc;
1695
+ }
1696
+ }
1697
+
1698
+ .main-pagination {
1699
+ .countItem {
1700
+ &__totalElement {
1701
+ text-align: end;
1702
+ margin: 20px 0;
1703
+ color: rgba(0, 0, 0, 0.54);
1704
+ font-size: 14px;
1705
+ }
1706
+ }
1707
+ }
1708
+
1709
+
1710
+ .dataNotFound {
1711
+ &__details {
1712
+ text-align: center;
1713
+ padding: 20px 0;
1714
+ font-weight: 500;
1715
+ &__icon {
1716
+ vertical-align: middle;
1717
+ color: var(--primary-color);
1718
+ align-items: center;
1719
+ }
1720
+ }
1721
+ }
1722
+ }
1723
+ }