ngx-form-designer 0.0.23

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 (123) hide show
  1. package/README.md +279 -0
  2. package/convert-legacy-rem-to-sass-function.mjs +198 -0
  3. package/fesm2022/ngx-form-designer.mjs +33548 -0
  4. package/fesm2022/ngx-form-designer.mjs.map +1 -0
  5. package/index.d.ts +5 -0
  6. package/lib/data/data-catalog.d.ts +46 -0
  7. package/lib/data/data-provider.d.ts +69 -0
  8. package/lib/data/data-source-client.d.ts +59 -0
  9. package/lib/data/data-source-parsers.d.ts +7 -0
  10. package/lib/data/external-data-source.d.ts +29 -0
  11. package/lib/data/file-upload-client.d.ts +19 -0
  12. package/lib/data/http-data-source-client.d.ts +31 -0
  13. package/lib/data/in-memory-data-catalog.service.d.ts +12 -0
  14. package/lib/data/runtime-field-data-access-registry.service.d.ts +29 -0
  15. package/lib/data/runtime-field-data-access.d.ts +32 -0
  16. package/lib/data/tree-utils.d.ts +28 -0
  17. package/lib/email-renderer/email-renderer.component.d.ts +21 -0
  18. package/lib/form-core/event-api-reference.d.ts +8 -0
  19. package/lib/form-core/form-engine.d.ts +55 -0
  20. package/lib/form-core/form-event-runner.d.ts +28 -0
  21. package/lib/form-core/models.d.ts +358 -0
  22. package/lib/form-core/plugin-metadata.d.ts +10 -0
  23. package/lib/form-core/rule-evaluation.service.d.ts +18 -0
  24. package/lib/form-core/schema-factory.d.ts +11 -0
  25. package/lib/form-core/schema-guard.d.ts +18 -0
  26. package/lib/form-core/schema-utils.d.ts +9 -0
  27. package/lib/form-designer/data-panel/data-panel.component.d.ts +101 -0
  28. package/lib/form-designer/designer-context.service.d.ts +29 -0
  29. package/lib/form-designer/designer-state.service.d.ts +167 -0
  30. package/lib/form-designer/dynamic-properties/dynamic-properties.component.d.ts +92 -0
  31. package/lib/form-designer/events-panel/events-panel.component.d.ts +21 -0
  32. package/lib/form-designer/events-workspace.component.d.ts +125 -0
  33. package/lib/form-designer/field-palette.component.d.ts +99 -0
  34. package/lib/form-designer/form-designer-shell.component.d.ts +81 -0
  35. package/lib/form-designer/form-preview.component.d.ts +36 -0
  36. package/lib/form-designer/form-settings-inspector.component.d.ts +15 -0
  37. package/lib/form-designer/global-data-manager.component.d.ts +32 -0
  38. package/lib/form-designer/inspector-sections/inspector-advanced-section.component.d.ts +17 -0
  39. package/lib/form-designer/inspector-sections/inspector-backgrounds-section.component.d.ts +14 -0
  40. package/lib/form-designer/inspector-sections/inspector-borders-section.component.d.ts +45 -0
  41. package/lib/form-designer/inspector-sections/inspector-effects-section.component.d.ts +22 -0
  42. package/lib/form-designer/inspector-sections/inspector-layout-section.component.d.ts +33 -0
  43. package/lib/form-designer/inspector-sections/inspector-position-section.component.d.ts +28 -0
  44. package/lib/form-designer/inspector-sections/inspector-size-section.component.d.ts +12 -0
  45. package/lib/form-designer/inspector-sections/inspector-spacing-section.component.d.ts +13 -0
  46. package/lib/form-designer/inspector-sections/inspector-typography-section.component.d.ts +31 -0
  47. package/lib/form-designer/json-form-designer.component.d.ts +17 -0
  48. package/lib/form-designer/layer-tree/layer-tree.component.d.ts +24 -0
  49. package/lib/form-designer/layout-canvas.component.d.ts +69 -0
  50. package/lib/form-designer/page-style.d.ts +2 -0
  51. package/lib/form-designer/properties-panel.component.d.ts +65 -0
  52. package/lib/form-designer/rules-editor/query-builder/query-builder.component.d.ts +23 -0
  53. package/lib/form-designer/rules-editor/rules-panel/rules-panel.component.d.ts +15 -0
  54. package/lib/form-designer/services/widget-definition-resolver.service.d.ts +38 -0
  55. package/lib/form-designer/template-library.d.ts +9 -0
  56. package/lib/form-designer/widget-inspector.component.d.ts +30 -0
  57. package/lib/form-renderer/form-viewer/form-viewer-readonly.component.d.ts +56 -0
  58. package/lib/form-renderer/form-viewer/form-viewer.component.d.ts +55 -0
  59. package/lib/form-renderer/json-form-renderer.component.d.ts +98 -0
  60. package/lib/form-renderer/layout-node.component.d.ts +94 -0
  61. package/lib/plugins/core-plugins.d.ts +5 -0
  62. package/lib/plugins/designer-plugin.d.ts +15 -0
  63. package/lib/plugins/plugin-context.d.ts +18 -0
  64. package/lib/plugins/plugin-providers.d.ts +3 -0
  65. package/lib/plugins/section-definition.d.ts +16 -0
  66. package/lib/theme/theme.service.d.ts +15 -0
  67. package/lib/ui/json-schema-editor.component.d.ts +27 -0
  68. package/lib/ui/monaco-editor.component.d.ts +24 -0
  69. package/lib/ui/ui-accordion.component.d.ts +11 -0
  70. package/lib/ui/ui-box-model.component.d.ts +55 -0
  71. package/lib/ui/ui-color-swatch.component.d.ts +12 -0
  72. package/lib/ui/ui-dimension.component.d.ts +21 -0
  73. package/lib/ui/ui-edge-box.component.d.ts +20 -0
  74. package/lib/ui/ui-field-wrapper.component.d.ts +8 -0
  75. package/lib/ui/ui-icon.module.d.ts +7 -0
  76. package/lib/ui/ui-input.component.d.ts +17 -0
  77. package/lib/ui/ui-range-number.component.d.ts +16 -0
  78. package/lib/ui/ui-select-icon.component.d.ts +18 -0
  79. package/lib/ui/ui-tabs.component.d.ts +25 -0
  80. package/lib/website/website-brick-studio.component.d.ts +67 -0
  81. package/lib/website/website-designer-shell.component.d.ts +53 -0
  82. package/lib/website/website-preview-shell.component.d.ts +25 -0
  83. package/lib/website/website-project.models.d.ts +78 -0
  84. package/lib/website/website-project.service.d.ts +50 -0
  85. package/lib/website/website-section-library.d.ts +6 -0
  86. package/lib/widgets/email-widgets/email-button-widget.component.d.ts +15 -0
  87. package/lib/widgets/email-widgets/email-heading-widget.component.d.ts +15 -0
  88. package/lib/widgets/email-widgets/email-text-widget.component.d.ts +13 -0
  89. package/lib/widgets/email-widgets.d.ts +2 -0
  90. package/lib/widgets/field-widgets/checkbox/checkbox-widget.component.d.ts +28 -0
  91. package/lib/widgets/field-widgets/checkbox-group/checkbox-group-widget.component.d.ts +40 -0
  92. package/lib/widgets/field-widgets/file-upload/file-upload-widget.component.d.ts +45 -0
  93. package/lib/widgets/field-widgets/radio/radio-widget.component.d.ts +39 -0
  94. package/lib/widgets/field-widgets/repeatable-group/repeatable-group-widget.component.d.ts +69 -0
  95. package/lib/widgets/field-widgets/rich-text/rich-text-widget.component.d.ts +17 -0
  96. package/lib/widgets/field-widgets/search/search-widget.component.d.ts +56 -0
  97. package/lib/widgets/field-widgets/select/select-widget.component.d.ts +53 -0
  98. package/lib/widgets/field-widgets/text-field/text-field.component.d.ts +39 -0
  99. package/lib/widgets/field-widgets/tree-select/tree-select-widget.component.d.ts +47 -0
  100. package/lib/widgets/page-link-context.d.ts +8 -0
  101. package/lib/widgets/page-widgets/brick-settings.component.d.ts +23 -0
  102. package/lib/widgets/page-widgets/brick-widget.component.d.ts +47 -0
  103. package/lib/widgets/page-widgets/button-link-settings.component.d.ts +23 -0
  104. package/lib/widgets/page-widgets/button-widget.component.d.ts +21 -0
  105. package/lib/widgets/page-widgets/heading-widget.component.d.ts +22 -0
  106. package/lib/widgets/page-widgets/inline-quill-editor.component.d.ts +35 -0
  107. package/lib/widgets/page-widgets/table-inspector.component.d.ts +17 -0
  108. package/lib/widgets/page-widgets/table-widget.component.d.ts +36 -0
  109. package/lib/widgets/page-widgets/text-block-widget.component.d.ts +22 -0
  110. package/lib/widgets/page-widgets.d.ts +2 -0
  111. package/lib/widgets/static-widgets/image/image-widget.component.d.ts +20 -0
  112. package/lib/widgets/style-helpers.d.ts +8 -0
  113. package/lib/widgets/style-properties.d.ts +28 -0
  114. package/lib/widgets/style-sections.d.ts +1 -0
  115. package/lib/widgets/table-widget.d.ts +2 -0
  116. package/lib/widgets/widget-definition.d.ts +81 -0
  117. package/lib/widgets/widget-editor-context.d.ts +8 -0
  118. package/lib/widgets/widget-packs.d.ts +4 -0
  119. package/lib/widgets/widgets.d.ts +2 -0
  120. package/package.json +47 -0
  121. package/public-api.d.ts +73 -0
  122. package/style-test-bug.scss +2562 -0
  123. package/tailwind.preset.js +62 -0
@@ -0,0 +1,2562 @@
1
+ /* Host-style reproduction stylesheet for Bootstrap + Tailwind + Angular Material. */
2
+ /* What impacts Tailwind here:
3
+ 1. Bootstrap's global CSS, loaded in the earliest layer.
4
+ 2. Broad host selectors in @layer legacy.
5
+ 3. Explicit overrides in @layer components.
6
+ Tailwind theme/base/utilities load after bootstrap + legacy, so equal-specificity
7
+ conflicts resolve in Tailwind's favor without needing a class prefix.
8
+ */
9
+
10
+ @layer bootstrap,theme, base, components, utilities;
11
+
12
+ @import "./node_modules/bootstrap/dist/css/bootstrap.min.css" layer(bootstrap);
13
+ @import "tailwindcss/theme.css" layer(theme);
14
+ @import "tailwindcss/preflight.css" layer(base);
15
+ @import "tailwindcss/utilities.css" layer(utilities);
16
+ @import "./node_modules/quill/dist/quill.bubble.css" layer(components);
17
+
18
+ @source "./node_modules/@json-editor/json-editor/dist/**/*.js";
19
+ @source "./projects/ngx-form-designer/src/**/*.{html,ts}";
20
+
21
+ @theme {
22
+
23
+ /* 2. Colors: Nested objects become dash-separated variables */
24
+
25
+
26
+
27
+ --color-accent-50: #eff6ff;
28
+
29
+
30
+
31
+ --color-accent-100: #dbeafe;
32
+
33
+
34
+
35
+ --color-accent-200: #bfdbfe;
36
+
37
+
38
+
39
+ --color-accent-500: #2563eb;
40
+
41
+
42
+
43
+ --color-accent-600: #1d4ed8;
44
+
45
+
46
+
47
+ --color-accent-700: #1e40af;
48
+
49
+
50
+
51
+ --color-ink-900: #0f172a;
52
+
53
+
54
+
55
+ --color-ink-700: #1f2937;
56
+
57
+
58
+
59
+ --color-ink-600: #374151;
60
+
61
+
62
+
63
+ --color-ink-500: #4b5563;
64
+
65
+
66
+
67
+ --color-ink-400: #6b7280;
68
+
69
+
70
+
71
+ --color-slate-50: #f8fafc;
72
+
73
+
74
+
75
+ --color-slate-100: #f1f5f9;
76
+
77
+
78
+
79
+ --color-slate-200: #e2e8f0;
80
+
81
+
82
+
83
+ --color-slate-300: #cbd5e1;
84
+
85
+
86
+
87
+ /* Light theme tokens */
88
+
89
+
90
+
91
+ --color-panel-dark: #ffffff;
92
+
93
+
94
+
95
+ --color-input-dark: #f9fafb;
96
+
97
+
98
+
99
+ --color-border-dark: #e5e7eb;
100
+
101
+
102
+
103
+ --color-text-secondary-dark: #6b7280;
104
+
105
+
106
+
107
+ --color-highlight-orange: #c46c35;
108
+
109
+
110
+
111
+ --color-primary-blue: #0073e6;
112
+
113
+
114
+
115
+ --color-primary-50: #ECF3FF;
116
+
117
+
118
+
119
+ --color-primary-500: #3F8CFF;
120
+
121
+
122
+
123
+ --color-text-primary: #1C2431;
124
+
125
+
126
+
127
+ --color-text-strong: #000000;
128
+
129
+
130
+
131
+ --color-border-default: #E6EAF0;
132
+
133
+
134
+
135
+ --color-surface-default: #FFFFFF;
136
+
137
+
138
+
139
+ --color-focus-border: #7FB2FF;
140
+
141
+
142
+
143
+ /* 3. Border Radius: Maps to 'rounded-*' utilities */
144
+
145
+
146
+
147
+ --radius-md: 10px;
148
+
149
+
150
+
151
+ --radius-lg: 12px;
152
+
153
+
154
+
155
+ /* 4. Box Shadow: Maps to 'shadow-*' utilities */
156
+
157
+
158
+
159
+ --shadow-card: 0 1px 2px rgba(15, 23, 42, 0.05);
160
+
161
+
162
+
163
+ --shadow-popover: 0 10px 40px rgba(15, 23, 42, 0.12);
164
+
165
+
166
+
167
+ /* 5. Font Family */
168
+
169
+
170
+
171
+ --font-sans: Inter, Segoe UI, system-ui, sans-serif;
172
+
173
+ }
174
+
175
+
176
+
177
+ :root {
178
+
179
+ --accent: #2563eb;
180
+
181
+
182
+
183
+ --accent-600: #1d4ed8;
184
+
185
+
186
+
187
+ --accent-700: #1e40af;
188
+
189
+
190
+
191
+ --panel: #f8fafc;
192
+
193
+
194
+
195
+ --card: #ffffff;
196
+
197
+
198
+
199
+ --card-border: #e2e8f0;
200
+
201
+
202
+
203
+ --muted: #6b7280;
204
+
205
+
206
+
207
+ --muted-2: #94a3b8;
208
+
209
+
210
+
211
+ --radius: 12px;
212
+
213
+
214
+
215
+ --shadow-card: 0 1px 2px rgba(15, 23, 42, 0.05);
216
+
217
+
218
+
219
+ --shadow-popover: 0 10px 40px rgba(15, 23, 42, 0.12);
220
+
221
+ }
222
+
223
+
224
+
225
+ @layer components {
226
+
227
+ .fd-json-schema-editor {
228
+
229
+ @apply text-sm text-ink-900;
230
+
231
+ }
232
+
233
+
234
+
235
+ .fd-json-schema-editor .je-panel,
236
+ .fd-json-schema-editor .je-panel-top,
237
+ .fd-json-schema-editor .je-indented-panel,
238
+ .fd-json-schema-editor .je-indented-panel--top {
239
+
240
+ @apply rounded-md border border-slate-200 bg-slate-50 shadow-none;
241
+
242
+ }
243
+
244
+
245
+
246
+ .fd-json-schema-editor .form-group {
247
+
248
+ @apply mb-3;
249
+
250
+ }
251
+
252
+
253
+
254
+ .fd-json-schema-editor label {
255
+
256
+ @apply text-[11px] font-semibold text-ink-500;
257
+
258
+ }
259
+
260
+
261
+
262
+ .fd-json-schema-editor input:not([type='checkbox']):not([type='radio']),
263
+ .fd-json-schema-editor select,
264
+ .fd-json-schema-editor textarea {
265
+
266
+ @apply w-full rounded-md border border-slate-200 bg-white px-2 py-1.5 text-sm text-ink-900 shadow-sm;
267
+ @apply focus:outline-none focus:ring-2 focus:ring-accent-100 focus:border-accent-500;
268
+
269
+ }
270
+
271
+
272
+
273
+ .fd-json-schema-editor button[class*='json-editor-btn-'] {
274
+
275
+ @apply inline-flex items-center gap-1 rounded-md border border-slate-200 bg-white px-2 py-1 text-xs font-semibold text-ink-600 shadow-none;
276
+ @apply hover:bg-slate-50 hover:text-ink-900;
277
+ @apply focus:outline-none focus:ring-2 focus:ring-accent-100 focus:border-accent-500;
278
+
279
+ }
280
+
281
+
282
+
283
+ .fd-json-schema-editor button.json-editor-btn-collapse {
284
+
285
+ @apply m-0 h-7 w-7 justify-center p-0;
286
+
287
+ }
288
+
289
+
290
+
291
+ .fd-json-schema-editor button.json-editor-btn-collapse svg {
292
+
293
+ @apply h-4 w-4;
294
+
295
+ }
296
+
297
+
298
+
299
+ .fd-json-schema-editor .json-editor-btntype-add {
300
+
301
+ @apply border-accent-600 bg-accent-600 text-white hover:border-accent-700 hover:bg-accent-700;
302
+
303
+ }
304
+
305
+
306
+
307
+ .fd-json-schema-editor .json-editor-btntype-delete,
308
+ .fd-json-schema-editor .json-editor-btntype-deletelast,
309
+ .fd-json-schema-editor .json-editor-btntype-deleteall {
310
+
311
+ @apply border-red-200 bg-red-50 text-red-700 hover:bg-red-100;
312
+
313
+ }
314
+
315
+
316
+
317
+ .fd-json-schema-editor .form-input-hint {
318
+
319
+ @apply mt-1 text-[11px] text-red-600;
320
+
321
+ }
322
+
323
+ }
324
+
325
+
326
+
327
+
328
+
329
+ html,
330
+ body {
331
+
332
+ height: 100%;
333
+
334
+ margin: 0;
335
+
336
+ font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
337
+
338
+ color: #0f172a;
339
+
340
+ background: #f8fafc;
341
+
342
+ }
343
+
344
+
345
+
346
+ #tailwind-root {
347
+
348
+ min-height: 100vh;
349
+
350
+ }
351
+
352
+
353
+
354
+ .custom-scrollbar::-webkit-scrollbar { width: 6px; height: 6px; }
355
+
356
+ .custom-scrollbar::-webkit-scrollbar-thumb { background-color: #d5d9e3; border-radius: 12px; }
357
+
358
+ .custom-scrollbar::-webkit-scrollbar-track { background: transparent; }
359
+
360
+
361
+
362
+ /* The host app also used Angular Material density Sass, but this workspace
363
+ does not install the Material package. The plain CSS selectors below are
364
+ the part that affects cascade behavior for this repro. */
365
+
366
+
367
+
368
+ @font-face {
369
+
370
+ font-family: LatoBold;
371
+
372
+ src: local("Lato Bold"), local("Lato-Bold");
373
+
374
+ }
375
+
376
+
377
+
378
+ @font-face {
379
+
380
+ font-family: LatoBlack;
381
+
382
+ src: local("Lato Black"), local("Lato-Black");
383
+
384
+ }
385
+
386
+
387
+
388
+ @font-face {
389
+
390
+ font-family: LatoRegular;
391
+
392
+ src: local("Lato Regular"), local("Lato-Regular");
393
+
394
+ }
395
+
396
+
397
+
398
+ @font-face {
399
+
400
+ font-family: LatoLight;
401
+
402
+ src: local("Lato Light"), local("Lato-Light");
403
+
404
+ }
405
+
406
+
407
+
408
+ @font-face {
409
+
410
+ font-family: "Material Icons";
411
+
412
+ font-style: normal;
413
+
414
+ font-weight: 400;
415
+
416
+ src:
417
+
418
+ local("Material Icons"),
419
+
420
+ local("MaterialIcons-Regular");
421
+
422
+ }
423
+
424
+
425
+
426
+ :root {
427
+
428
+ --blue-color: #1852b3, --headline: #1852b3;
429
+
430
+ --header-border: #d9d9d9;
431
+
432
+ // --background-image: url("/../assets/background/Landing_Page_Background.png");
433
+
434
+ // --header-strip: url(assets/headerStrip.png);
435
+
436
+ // --light-strip: url(assets/app-icons/lightstrip.png);
437
+
438
+ // --side-meny-bm: url(assets/app-icons/side-menu-BM.png);
439
+
440
+ // --background-export: url(assets/settings-icons/export-background.png);
441
+
442
+ --background: #ffffff;
443
+
444
+ --on-background: #283041;
445
+
446
+ --container: #ffffff;
447
+
448
+ --container-secondary: #d4d1d1;
449
+
450
+ --container-third: #e4e4e4;
451
+
452
+ --on-container: #283041;
453
+
454
+ --secondary-color: #575757;
455
+
456
+ --hr-line: #c3bfbf;
457
+
458
+ --mat-icon: #5f7d95;
459
+
460
+ --tab-container: #e0dfdf;
461
+
462
+ --pannel: #ececec;
463
+
464
+ --mat-icon-background: #fbfbfb;
465
+
466
+ --panel-background: #ffffff;
467
+
468
+ --globalsearch-background: #ffffff;
469
+
470
+ --globalcontent-background: #f8f8f8;
471
+
472
+ --text-color: #1c2431;
473
+
474
+ --mat-form-underline: #d0d0d0;
475
+
476
+ --options-button: #f1f1f1;
477
+
478
+ --highlight-color: #1852b3;
479
+
480
+ --third-grey: #f2f2f2;
481
+
482
+ --placeholder: #a5a5a5;
483
+
484
+ --select-background: #ffffff;
485
+
486
+ --tile-border-select: #1071bc;
487
+
488
+ --info-background: #f0f0f0;
489
+
490
+ --dot: #ff5050;
491
+
492
+ --table-head: #dcdcdc;
493
+
494
+ --mat-row: #f2f2f2;
495
+
496
+ --data-bg: #ebebf0;
497
+
498
+
499
+
500
+ /* Landing page */
501
+
502
+ --hr-color: #e5e5e5;
503
+
504
+ --mat-tab-background: #ebebf0;
505
+
506
+ --box-shadow-color: #00000029;
507
+
508
+ --strip: #ffffff;
509
+
510
+
511
+
512
+ /* Button */
513
+
514
+ --button-background: lightgrey;
515
+
516
+ --button-color: #36445a;
517
+
518
+
519
+
520
+ /* Teams */
521
+
522
+ --ts-wrapper: #f2f2f2;
523
+
524
+ --teams-circle: #bababa;
525
+
526
+ --teams-background: #ffffff;
527
+
528
+ --teams-heading: #283041;
529
+
530
+
531
+
532
+ /* Designer module */
533
+
534
+ --ds-main-tab: #f8f8f8;
535
+
536
+ --ds-on-main-tab: #818181;
537
+
538
+ --ds-on-main-select: #0071bc;
539
+
540
+ --ds-sub-tab: #0071bc;
541
+
542
+ --ds-on-sub-tab: #ffffff;
543
+
544
+ --ds-sub-tab_ative: #0071bc;
545
+
546
+ --ds-sub-tab-select: #34a0e8;
547
+
548
+ --ds-side-bars: #f8f8f8;
549
+
550
+ --ds-right-side: #4f5867;
551
+
552
+ --ds-right-side-disable: #4f5867;
553
+
554
+ --designer-head: #4f5867;
555
+
556
+
557
+
558
+ --ds-background: #ffffff;
559
+
560
+ --ds-white-font: #283041;
561
+
562
+ --ds-table-header: #f2f2f2;
563
+
564
+ --ds-table-body: #ffffff;
565
+
566
+ --ds-table-header-font: #1c2431;
567
+
568
+ --ds-table-border: #f2f2f2;
569
+
570
+ --circle-info: #1c2431;
571
+
572
+ --cross-color: #283041;
573
+
574
+ --div-border: #ebebeb;
575
+
576
+ --card-background: #f8f8f8;
577
+
578
+ --on-card-background: #ffffff;
579
+
580
+ --card-label: #1c2431;
581
+
582
+ --card-sub-label: #a5a5a5;
583
+
584
+ --section-heading: #283041;
585
+
586
+ --mat-select-value: #000000;
587
+
588
+ --field-lines: #d0d0d0;
589
+
590
+ --field-label: #1c2431;
591
+
592
+ --thumbnail: #cccccc;
593
+
594
+ --ds-card-background: #f0f0f0;
595
+
596
+ --ds-link: #1852b2;
597
+
598
+
599
+
600
+ /* Activity */
601
+
602
+ --ds-enter: #1071bc;
603
+
604
+ --ds-border-tab: #696965;
605
+
606
+ --ds-placeholder: #535353;
607
+
608
+ --ds-pin: #dbdbdb;
609
+
610
+ --ds-fa-circle: #afafaf;
611
+
612
+ --ds-app-admin: #9572b9;
613
+
614
+ --ds-stream-owner: #91606b;
615
+
616
+ --ds-author: #668ebc;
617
+
618
+ --ds-quality-expert: #349caa;
619
+
620
+ --ds-any: #d2691e;
621
+
622
+
623
+
624
+ /* Workspace */
625
+
626
+ --ds-border: #d9d9d9;
627
+
628
+ --ds-radio-icon: #707070;
629
+
630
+ --ds-header-border: #ebebeb;
631
+
632
+
633
+
634
+ /* Settings */
635
+
636
+ --ubackground: #ffffff;
637
+
638
+ --ulabel: #393939;
639
+
640
+ --udropdown: #ffffff;
641
+
642
+ --udropdownplaceholder: #393939;
643
+
644
+ --pageHeading: #283041;
645
+
646
+ --submitButton: #1852b3;
647
+
648
+ --selecteddropdown: #393939;
649
+
650
+ --option-background: #ffffff;
651
+
652
+ --table: #f2f2f2;
653
+
654
+ --on-table: #1c2431;
655
+
656
+ --tableDetails: #ffffff;
657
+
658
+ --search: #ffffff;
659
+
660
+ --onSearch: #a5a5a5;
661
+
662
+ --umaticon: #1c2431;
663
+
664
+ --ucontainer: #ffffff;
665
+
666
+
667
+
668
+ /* Streams */
669
+
670
+ --panel-border: #d9d9d9;
671
+
672
+ --menu-hover: #f2f2f2;
673
+
674
+ --card-content: #f2f2f2;
675
+
676
+ --card-thumbnail: #cccccc;
677
+
678
+ --add-stream: #657083;
679
+
680
+ --stream-image: #cccccc;
681
+
682
+ --left-section: #ffffff;
683
+
684
+ --info-card: #ffffff;
685
+
686
+ --date-color: #5a5a5a;
687
+
688
+ --info-text: #575757;
689
+
690
+
691
+
692
+ /* Events */
693
+
694
+ --selection-background: #f8f8ff;
695
+
696
+ --details-link: #1071bc;
697
+
698
+ --selection-row: #efeff0;
699
+
700
+
701
+
702
+ /* Category definition */
703
+
704
+ --on-paginator: #1c2431;
705
+
706
+ --on-tree: #000000;
707
+
708
+ --on-select: #1852b3;
709
+
710
+ --tree: #ffffff;
711
+
712
+
713
+
714
+ /* Error handler */
715
+
716
+ --error-container: #ffffff;
717
+
718
+ --on-error-container: #000000;
719
+
720
+
721
+
722
+ /* Pack template */
723
+
724
+ --on-selected-area: #434343;
725
+
726
+ --selected-area: #f4f4f4;
727
+
728
+
729
+
730
+ /* New setting border */
731
+
732
+ --border-container: #d3d3d3;
733
+
734
+ --content-heading: #545456;
735
+
736
+
737
+
738
+ /* Stepper */
739
+
740
+ --selected-stepper-bar: #407ee3;
741
+
742
+ --selected-stepper-circle: #1852b2;
743
+
744
+ --stepper-bar: #dedede;
745
+
746
+ --stepper-circle: #ffffff;
747
+
748
+ --tile-circle: #969696;
749
+
750
+ --normal-text: #4b5467;
751
+
752
+ --select-row: #f9f9f9;
753
+
754
+
755
+
756
+ /* Planner */
757
+
758
+ --ds-planner-ongoing-bg: #ffcc00;
759
+
760
+ --ds-planner-completed-bg: #34c759;
761
+
762
+ --ds-planner-overdue-bg: #faa5a5;
763
+
764
+ --ds-planner-landing-cards-bg: #f0f0f2;
765
+
766
+ --ds-planner-blue: #1852b2;
767
+
768
+ --ds-planner-white: #ffffff;
769
+
770
+ --ds-planner-select: #545456;
771
+
772
+ --ds-planner-preview: #ffffff;
773
+
774
+ --filter-font: #1c2431;
775
+
776
+
777
+
778
+ /* Cards */
779
+
780
+ --card-color: #ffffff;
781
+
782
+ --card-heading: #1c2431;
783
+
784
+ --card-body: #5a5a5a;
785
+
786
+ --header-options: #1852b3;
787
+
788
+
789
+
790
+ /* Access management */
791
+
792
+ --mat-table-header: #e0e0e0;
793
+
794
+ --back-page: #f0f0f0;
795
+
796
+ --border-top: #d9d9d9;
797
+
798
+ --mat-cell-text: #5a5a5a;
799
+
800
+ --searchbar-border: #ededed;
801
+
802
+ --link: #1552b9;
803
+
804
+ --selectedView: #1852b2;
805
+
806
+ --viewTitle: #5e7d95;
807
+
808
+ --roleInfo-back: #ffffff;
809
+
810
+ --strip-border: #f2f2f2;
811
+
812
+ --nameHeading: #1c2431;
813
+
814
+ --input-field: #f0f0f0;
815
+
816
+ --ds-selected: #f2f2f2;
817
+
818
+ --approve: #c6efce;
819
+
820
+
821
+
822
+ /* Organizer */
823
+
824
+ --head-text: #575757;
825
+
826
+ --panel-head: #ffffff;
827
+
828
+ --panel-background-org: #ebebeb;
829
+
830
+ --org-info-head: #434343;
831
+
832
+ --top-code-sub: #434343;
833
+
834
+ --info-text-desc: #575757;
835
+
836
+ --panel-body-orgTree: #e5e5e5;
837
+
838
+ --org-expansion-header: #cccccc;
839
+
840
+ --org-expansion-back: #ffffff;
841
+
842
+ --selected-pack-back: #cccccc;
843
+
844
+ --product-head: #5a5a5a;
845
+
846
+ --org-tab-border: #ededed;
847
+
848
+ --select-cat-org: #d9d9d9;
849
+
850
+ --org-product-back: #d9d9d9;
851
+
852
+ --org-product-title: #1c2431;
853
+
854
+ --org-download-tile: #1852b2;
855
+
856
+ --org-product-tab: #1852b2;
857
+
858
+ --org-drop-desc: #434343;
859
+
860
+ --org-product-landing-back: #ffffff;
861
+
862
+ --org-product-grey-strip: #f0f0f0;
863
+
864
+ --org-product-desc: #434343;
865
+
866
+ --org-product-bottom-wrap: #f0f0f0;
867
+
868
+ --org-product-bottom-white-wrap: #ffffff;
869
+
870
+ --org-product-title-head: #575757;
871
+
872
+ --org-product-border: #dedede;
873
+
874
+ --org-product-border-bottom: #f0f0f0;
875
+
876
+ --org-product-strip-wrap: #421888;
877
+
878
+ --org-product-strip-wrap-sub: #1981d2;
879
+
880
+ --org-product-middle-buttons: #ffffff;
881
+
882
+ --org-product-card-back: #ffffff;
883
+
884
+ --org-product-card-border: #d9d9d9;
885
+
886
+ --org-product-card-head: #5a5a5a;
887
+
888
+ --org-product-card-head2: #5a5a5a;
889
+
890
+ --org-searchbar-border: #ededed;
891
+
892
+ --org-event-back: #f5f5f5;
893
+
894
+ --org-event-selected-back: #cccccc;
895
+
896
+ --select-category-org: #d9d9d9;
897
+
898
+ --btn-org-create: #1852b3;
899
+
900
+ --product-word-head-back1: #785ca3;
901
+
902
+ --product-word-head-back2: #2a91e2;
903
+
904
+ --product-word-background: #785ca3;
905
+
906
+ --product-word-background-rem: #2a91e2;
907
+
908
+ --event-btn-back: #518ae5;
909
+
910
+ --org-expansion-back-create-screen: #f0f0f0;
911
+
912
+ --org-teams-role-desc: #808080;
913
+
914
+ --org-product-details-back: #f0f0f0;
915
+
916
+ --org-landing-event-name: #2348c2;
917
+
918
+ --org-button-hover: #1852b3;
919
+
920
+ --org-lob-back: #ffffff;
921
+
922
+ --org-lob-back-business-process: #cccccc;
923
+
924
+
925
+
926
+ --noData-img-message-back: #eeeef0;
927
+
928
+ --noData-img-message: #7f7f88;
929
+
930
+ --unlink-heading: #575757;
931
+
932
+ --heading1: #5a5a5a;
933
+
934
+ --btn_class: #ffff;
935
+
936
+ --selectCat: rgb(217, 217, 217);
937
+
938
+ --head1: #5a5a5a;
939
+
940
+ --card: #ffffff;
941
+
942
+ --card-border: #d9d9d9;
943
+
944
+ --info-text-Event: #545454;
945
+
946
+ --eventBg: #ffffff;
947
+
948
+ --midsection: #ffffff;
949
+
950
+ --background-body: #ffffff;
951
+
952
+ --cancel-btn: #EBEBFO;
953
+
954
+ --checked-box-clr: #1852b2;
955
+
956
+ --fliter-color: invert(100%) sepia(84%) saturate(239100%) hue-rotate(209deg) brightness(92%) contrast(100%);
957
+
958
+ --horiZontal-strip: #f2f2f2;
959
+
960
+ }
961
+
962
+
963
+ body {
964
+
965
+ font-family: LatoRegular !important;
966
+
967
+ box-sizing: border-box;
968
+
969
+ }
970
+
971
+
972
+ .row {
973
+
974
+ margin-right: 0 !important;
975
+
976
+ margin-left: 0 !important;
977
+
978
+ --bs-gutter-x: 0px !important;
979
+
980
+ }
981
+
982
+
983
+
984
+ .mat-typography {
985
+
986
+ margin: 0px !important;
987
+
988
+ }
989
+
990
+
991
+
992
+ .mat-mdc-select-arrow {
993
+
994
+ border: 0 !important;
995
+
996
+ border-top: 0.1rem solid !important;
997
+
998
+ border-right: 0.1rem solid !important;
999
+
1000
+ width: 6px !important;
1001
+
1002
+ height: 6px !important;
1003
+
1004
+
1005
+
1006
+ box-sizing: border-box;
1007
+
1008
+ transform: rotate(135deg) !important;
1009
+
1010
+ color: var(--text-color) !important;
1011
+
1012
+ margin-right: 10px !important;
1013
+
1014
+ }
1015
+
1016
+
1017
+
1018
+ .mat-mdc-select-arrow svg {
1019
+
1020
+ display: none !important;
1021
+
1022
+ }
1023
+
1024
+
1025
+
1026
+ .mdc-text-field--outlined .mat-mdc-form-field-infix,
1027
+
1028
+ .mdc-text-field--no-label .mat-mdc-form-field-infix {
1029
+
1030
+ padding: 2px !important;
1031
+
1032
+ min-height: auto !important;
1033
+
1034
+ }
1035
+
1036
+
1037
+
1038
+ .mat-mdc-form-field-focus-overlay {
1039
+
1040
+ background-color: transparent !important;
1041
+
1042
+ }
1043
+
1044
+
1045
+
1046
+ .mat-mdc-form-field-infix {
1047
+
1048
+ min-height: auto !important;
1049
+
1050
+ }
1051
+
1052
+
1053
+
1054
+ .mat-mdc-form-field-subscript-wrapper,
1055
+
1056
+ .mat-mdc-form-field-bottom-align::before {
1057
+
1058
+ line-height: 15px !important;
1059
+
1060
+ height: 0px !important;
1061
+
1062
+ content: none !important;
1063
+
1064
+ }
1065
+
1066
+
1067
+
1068
+ .cdk-overlay-pane.mat-mdc-dialog-panel {
1069
+
1070
+ max-width: none !important;
1071
+
1072
+ }
1073
+
1074
+
1075
+
1076
+ .text-truncate {
1077
+
1078
+ width: 100%;
1079
+
1080
+ }
1081
+
1082
+
1083
+
1084
+ .mdc-text-field--outlined:not(.mdc-text-field--disabled) .mat-mdc-notch-piece {
1085
+
1086
+ border-color: #ebebeb !important;
1087
+
1088
+ border-radius: 3px;
1089
+
1090
+ }
1091
+
1092
+
1093
+
1094
+ .mdc-text-field--outlined:not(.mdc-text-field--disabled) .mat-mdc-notch-piece ::focus {
1095
+
1096
+ border-color: #ebebeb !important;
1097
+
1098
+ border-radius: 3px;
1099
+
1100
+ border-width: 1px;
1101
+
1102
+ }
1103
+
1104
+
1105
+
1106
+ .mat-mdc-form-field .mat-mdc-floating-label.mdc-floating-label {
1107
+
1108
+ font-size: 12px !important;
1109
+
1110
+ font-family: "LatoBold" !important;
1111
+
1112
+ color: #3f86f0 !important;
1113
+
1114
+ top: 33px !important;
1115
+
1116
+ }
1117
+
1118
+
1119
+
1120
+ ::placeholder {
1121
+
1122
+ color: #b2b5ba !important;
1123
+
1124
+ font-size: 12px;
1125
+
1126
+ font-family: LatoRegular;
1127
+
1128
+ opacity: 1;
1129
+
1130
+ }
1131
+
1132
+
1133
+
1134
+ .mat-form-field-infix {
1135
+
1136
+ padding-bottom: 0.5rem !important;
1137
+
1138
+ }
1139
+
1140
+
1141
+
1142
+ .mat-mdc-select-panel {
1143
+
1144
+ padding: 0 !important;
1145
+
1146
+ overflow-x: hidden !important;
1147
+
1148
+ position: relative !important;
1149
+
1150
+
1151
+
1152
+ &.ng-animating {
1153
+
1154
+ visibility: hidden !important;
1155
+
1156
+ }
1157
+
1158
+ }
1159
+
1160
+
1161
+
1162
+ .mat-mdc-form-field-focus-overlay {
1163
+
1164
+ background-color: transparent !important;
1165
+
1166
+ }
1167
+
1168
+
1169
+
1170
+ .mat-mdc-text-field-wrapper {
1171
+
1172
+ padding-left: 0px !important;
1173
+
1174
+ }
1175
+
1176
+
1177
+
1178
+ .mat-mdc-form-field-error-wrapper {
1179
+
1180
+ padding-left: 0px !important;
1181
+
1182
+ }
1183
+
1184
+
1185
+
1186
+ // .mat-mdc-form-field-flex {
1187
+
1188
+ //     padding: 1rem 1.4rem;
1189
+
1190
+ // }
1191
+
1192
+ .submit-button {
1193
+
1194
+ background-color: #1852b2 !important;
1195
+
1196
+ color: white !important;
1197
+
1198
+ border: 0.1rem solid #1852b2 !important;
1199
+
1200
+ border-radius: 0.5rem;
1201
+
1202
+ width: 10rem;
1203
+
1204
+ height: 3rem !important;
1205
+
1206
+ line-height: 3rem !important;
1207
+
1208
+ font-size: 1.2rem;
1209
+
1210
+ font-weight: bold;
1211
+
1212
+ }
1213
+
1214
+
1215
+
1216
+ button,
1217
+
1218
+ button:focus {
1219
+
1220
+ border: none !important;
1221
+
1222
+ outline: none !important;
1223
+
1224
+ font-family: LatoRegular;
1225
+
1226
+ font-size: 1.2rem;
1227
+
1228
+ font-weight: bold;
1229
+
1230
+ letter-spacing: 0px;
1231
+
1232
+ color: #ffffff;
1233
+
1234
+ background: #3f85f0 0% 0% no-repeat padding-box;
1235
+
1236
+ border-radius: 5px;
1237
+
1238
+ opacity: 1;
1239
+
1240
+
1241
+
1242
+ &:disabled,
1243
+
1244
+ &[disabled] {
1245
+
1246
+ background: #d3d3d3 0% 0% no-repeat padding-box !important;
1247
+
1248
+ cursor: not-allowed;
1249
+
1250
+ color: #ffffff;
1251
+
1252
+ }
1253
+
1254
+ }
1255
+
1256
+
1257
+
1258
+
1259
+
1260
+
1261
+ .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading {
1262
+
1263
+ width: 12px !important;
1264
+
1265
+ }
1266
+
1267
+
1268
+
1269
+ .mat-mdc-form-field.mat-form-field-animations-enabled .mdc-text-field__input {
1270
+
1271
+ padding-left: 12px;
1272
+
1273
+ }
1274
+
1275
+
1276
+
1277
+ .mat-mdc-input-element {
1278
+
1279
+ font-size: 11px;
1280
+
1281
+ font-family: LatoBold;
1282
+
1283
+ color: #1c2431;
1284
+
1285
+ }
1286
+
1287
+
1288
+
1289
+ .mat-mdc-select-placeholder {
1290
+
1291
+ color: #b2b5ba !important;
1292
+
1293
+ font-size: 12px;
1294
+
1295
+ font-family: LatoRegular;
1296
+
1297
+ opacity: 1;
1298
+
1299
+ }
1300
+
1301
+
1302
+
1303
+ .mat-mdc-select-placeholder {
1304
+
1305
+ padding-left: 12px;
1306
+
1307
+ }
1308
+
1309
+
1310
+
1311
+ .mat-mdc-input-element,
1312
+
1313
+ .mat-select-value-text {
1314
+
1315
+ color: #1c2431 !important;
1316
+
1317
+ font-size: 12px !important;
1318
+
1319
+ font-family: LatoRegular !important;
1320
+
1321
+ }
1322
+
1323
+
1324
+
1325
+ .cdk-overlay-pane {
1326
+
1327
+ background: #ffffff;
1328
+
1329
+ }
1330
+
1331
+
1332
+
1333
+ .mdc-notched-outline__leading,
1334
+
1335
+ .mdc-notched-outline__notch,
1336
+
1337
+ .mdc-notched-outline__trailing {
1338
+
1339
+ border-color: rgba(0, 0, 0, 0.12) !important;
1340
+
1341
+ }
1342
+
1343
+
1344
+
1345
+ .mdc-notched-outline--notched .mdc-notched-outline__notch {
1346
+
1347
+ padding-right: 0px !important;
1348
+
1349
+ }
1350
+
1351
+
1352
+
1353
+ .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
1354
+
1355
+ --mat-mdc-form-field-label-transform: translateY(calc(calc(12.75px + 56px / 2) * -1)) scale(0.75) !important;
1356
+
1357
+ }
1358
+
1359
+
1360
+
1361
+ .cancel-btn-active,
1362
+
1363
+ .cancel-btn-active:focus {
1364
+
1365
+ border: 1px solid #3f85f0 !important;
1366
+
1367
+ border-radius: 5px;
1368
+
1369
+ background: #ffff;
1370
+
1371
+ color: #3f85f0;
1372
+
1373
+ font-size: 12px;
1374
+
1375
+ font-family: LatoBold;
1376
+
1377
+ height: 30px;
1378
+
1379
+ width: 110px;
1380
+
1381
+ }
1382
+
1383
+
1384
+
1385
+ .submit-btn-deactive,
1386
+
1387
+ .submit-btn-deactive:focus {
1388
+
1389
+ border: 1px solid #b4b4b4;
1390
+
1391
+ border-radius: 5px;
1392
+
1393
+ background: #b4b4b4;
1394
+
1395
+ color: #ffffff;
1396
+
1397
+ font-size: 12px;
1398
+
1399
+ font-family: LatoBold;
1400
+
1401
+ height: 30px;
1402
+
1403
+ width: 110px;
1404
+
1405
+ }
1406
+
1407
+
1408
+
1409
+ .submit-btn-active,
1410
+
1411
+ .submit-btn-active:focus {
1412
+
1413
+ border: 1px solid #3f85f0;
1414
+
1415
+ border-radius: 5px;
1416
+
1417
+ background: #3f85f0;
1418
+
1419
+ color: #ffffff;
1420
+
1421
+ font-size: 12px;
1422
+
1423
+ font-family: LatoBlack;
1424
+
1425
+ height: 30px;
1426
+
1427
+ width: 110px;
1428
+
1429
+ }
1430
+
1431
+
1432
+
1433
+ .mdc-floating-label--required:not(.mdc-floating-label--hide-required-marker)::after {
1434
+
1435
+ color: red !important;
1436
+
1437
+ }
1438
+
1439
+
1440
+
1441
+ .pointer {
1442
+
1443
+ cursor: pointer;
1444
+
1445
+ }
1446
+
1447
+
1448
+
1449
+ .mat-mdc-select-value-text {
1450
+
1451
+ font-size: 12px;
1452
+
1453
+ font-family: LatoRegular;
1454
+
1455
+ color: #1c2431;
1456
+
1457
+ padding-left: 10px;
1458
+
1459
+ }
1460
+
1461
+
1462
+
1463
+ .mat-mdc-option {
1464
+
1465
+ min-height: 30px !important;
1466
+
1467
+ width: 100% !important;
1468
+
1469
+ }
1470
+
1471
+
1472
+
1473
+ .mat-mdc-option .mdc-list-item__primary-text {
1474
+
1475
+ color: #5a5a5a !important;
1476
+
1477
+ font-size: 12px !important;
1478
+
1479
+ font-family: "LatoRegular" !important;
1480
+
1481
+ }
1482
+
1483
+
1484
+
1485
+ .mat-pseudo-checkbox .mat-mdc-option-pseudo-checkbox {
1486
+
1487
+ visibility: hidden !important;
1488
+
1489
+ }
1490
+
1491
+
1492
+
1493
+ .mat-mdc-option .mat-pseudo-checkbox-minimal {
1494
+
1495
+ display: none;
1496
+
1497
+ }
1498
+
1499
+
1500
+
1501
+ .mat-pseudo-checkbox-full {
1502
+
1503
+ border-color: #1071bc !important;
1504
+
1505
+ }
1506
+
1507
+
1508
+
1509
+ .mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked::after {
1510
+
1511
+ color: #ffffff !important;
1512
+
1513
+ width: 7px;
1514
+
1515
+ height: 4px;
1516
+
1517
+ }
1518
+
1519
+
1520
+
1521
+ .mat-pseudo-checkbox-checked {
1522
+
1523
+ background-color: #3f86f0 !important;
1524
+
1525
+ }
1526
+
1527
+
1528
+
1529
+ .mat-pseudo-checkbox {
1530
+
1531
+ width: 15px !important;
1532
+
1533
+ height: 15px !important;
1534
+
1535
+ }
1536
+
1537
+
1538
+
1539
+ .table-wrapper {
1540
+
1541
+ box-shadow: 0rem 3px 6px #00000029;
1542
+
1543
+ background: var(--ds-table-body) !important;
1544
+
1545
+ color: var(--on-container) !important;
1546
+
1547
+ text-align: center;
1548
+
1549
+ min-height: 450px;
1550
+
1551
+ overflow: unset;
1552
+
1553
+
1554
+
1555
+ .mat-mdc-table {
1556
+
1557
+ min-height: 400px !important;
1558
+
1559
+ max-height: 400px;
1560
+
1561
+ overflow-y: auto;
1562
+
1563
+ width: 100%;
1564
+
1565
+ }
1566
+
1567
+ }
1568
+
1569
+
1570
+
1571
+ .mat-mdc-header-row {
1572
+
1573
+ background: var(--ds-table-header) !important;
1574
+
1575
+ min-height: 33px !important;
1576
+
1577
+ height: 33px !important;
1578
+
1579
+ z-index: 0;
1580
+
1581
+ margin-bottom: 10px;
1582
+
1583
+ top: 0px !important;
1584
+
1585
+ }
1586
+
1587
+
1588
+
1589
+ .mat-mdc-row {
1590
+
1591
+ min-height: 27px !important;
1592
+
1593
+ border-bottom: none;
1594
+
1595
+ }
1596
+
1597
+
1598
+
1599
+ mat-header-cell {
1600
+
1601
+ color: var(--ds-table-header-font) !important;
1602
+
1603
+ //margin-right: 2rem;
1604
+
1605
+ vertical-align: middle;
1606
+
1607
+ text-transform: uppercase;
1608
+
1609
+ font-size: 12px;
1610
+
1611
+ font-family: LatoBlack;
1612
+
1613
+
1614
+
1615
+ button {
1616
+
1617
+ background: none !important;
1618
+
1619
+ color: var(--ds-table-header-font) !important;
1620
+
1621
+ font-family: LatoBlack !important;
1622
+
1623
+ }
1624
+
1625
+ }
1626
+
1627
+
1628
+
1629
+ mat-cell {
1630
+
1631
+ color: var(--on-container) !important;
1632
+
1633
+ font-size: 12px;
1634
+
1635
+ font-family: LatoRegular;
1636
+
1637
+ // margin-right: 2rem;
1638
+
1639
+ }
1640
+
1641
+
1642
+
1643
+ .paginator {
1644
+
1645
+ width: 100%;
1646
+
1647
+ border-top: 1px solid var(--ds-border);
1648
+
1649
+ background: var(--container) !important;
1650
+
1651
+ height: 45px;
1652
+
1653
+ display: flex;
1654
+
1655
+ justify-content: flex-end;
1656
+
1657
+ align-items: center;
1658
+
1659
+
1660
+
1661
+ .text-left {
1662
+
1663
+ color: var(--on-container) !important;
1664
+
1665
+ font-family: LatoRegular;
1666
+
1667
+ font-size: 11px;
1668
+
1669
+ }
1670
+
1671
+ }
1672
+
1673
+
1674
+
1675
+ .ngx-pagination {
1676
+
1677
+ margin-bottom: 0rem !important;
1678
+
1679
+
1680
+
1681
+ .pagination-previous {
1682
+
1683
+ text-transform: capitalize !important;
1684
+
1685
+ }
1686
+
1687
+
1688
+
1689
+ .current {
1690
+
1691
+ padding: 1px 6px;
1692
+
1693
+ background: var(--on-select) !important;
1694
+
1695
+ color: #fefefe;
1696
+
1697
+ cursor: default;
1698
+
1699
+ margin-left: 10px;
1700
+
1701
+ margin-right: 10px;
1702
+
1703
+ border-radius: 30px;
1704
+
1705
+ }
1706
+
1707
+ }
1708
+
1709
+
1710
+
1711
+ .text-truncate {
1712
+
1713
+ width: 100%;
1714
+
1715
+ }
1716
+
1717
+
1718
+
1719
+ ::ng-deep .mdc-line-ripple {
1720
+
1721
+ display: none !important;
1722
+
1723
+ }
1724
+
1725
+
1726
+
1727
+ .mdc-checkbox__background {
1728
+
1729
+ width: 12px !important;
1730
+
1731
+ height: 12px !important;
1732
+
1733
+ border: 1px solid #5e7c95 !important;
1734
+
1735
+ }
1736
+
1737
+
1738
+
1739
+ .celldata {
1740
+
1741
+ font-size: 11px;
1742
+
1743
+ color: #5a5a5a !important;
1744
+
1745
+ font-family: LatoRegular;
1746
+
1747
+ }
1748
+
1749
+
1750
+
1751
+ .mdc-checkbox__checkmark-path {
1752
+
1753
+ color: #ffffff;
1754
+
1755
+ }
1756
+
1757
+
1758
+
1759
+ .mdc-checkbox__native-control:enabled:checked~.mdc-checkbox__background {
1760
+
1761
+ background-color: #3e85f0 !important;
1762
+
1763
+ }
1764
+
1765
+ .mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked::after {
1766
+
1767
+ color: white !important;
1768
+
1769
+ width: 8px !important;
1770
+
1771
+ height: 3px !important;
1772
+
1773
+ }
1774
+
1775
+ .searchInput:focus {
1776
+
1777
+ outline: none;
1778
+
1779
+ border: none;
1780
+
1781
+ width: 100%;
1782
+
1783
+ font-family: LatoRegular;
1784
+
1785
+ font-size: 13px;
1786
+
1787
+ color: #1c2431;
1788
+
1789
+ background: #ffffff;
1790
+
1791
+ }
1792
+
1793
+
1794
+
1795
+ .mat-mdc-form-field-infix {
1796
+
1797
+ height: 32px;
1798
+
1799
+ }
1800
+
1801
+
1802
+
1803
+ :host ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label {
1804
+
1805
+ top: 33px !important;
1806
+
1807
+ }
1808
+
1809
+
1810
+
1811
+ .mat-mdc-tab {
1812
+
1813
+ letter-spacing: 0px !important;
1814
+
1815
+ }
1816
+
1817
+
1818
+
1819
+ .mat-mdc-tab .mdc-tab-indicator__content--underline {
1820
+
1821
+ background-color: #3f86f0 !important;
1822
+
1823
+ width: 30px !important;
1824
+
1825
+ border-radius: 10px !important;
1826
+
1827
+ height: 10% !important;
1828
+
1829
+ margin-left: 22px !important;
1830
+
1831
+ }
1832
+
1833
+
1834
+
1835
+ .mat-mdc-tab.mdc-tab--active:hover .mdc-tab__text-label {
1836
+
1837
+ font-family: LatoBlack !important;
1838
+
1839
+ font-size: 13px !important;
1840
+
1841
+ color: #000000 !important;
1842
+
1843
+ opacity: 1 !important;
1844
+
1845
+ }
1846
+
1847
+
1848
+
1849
+ .mat-mdc-tab.mdc-tab--active .mdc-tab__text-label {
1850
+
1851
+ font-family: LatoBlack !important;
1852
+
1853
+ font-size: 14px !important;
1854
+
1855
+ color: #000000 !important;
1856
+
1857
+ opacity: 1 !important;
1858
+
1859
+ }
1860
+
1861
+
1862
+
1863
+ .mat-mdc-tab .mdc-tab__text-label {
1864
+
1865
+ font-family: LatoRegular !important;
1866
+
1867
+ font-size: 14px;
1868
+
1869
+ color: #a5a5a5 !important;
1870
+
1871
+ }
1872
+
1873
+
1874
+
1875
+ .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-text-field__input {
1876
+
1877
+ padding-left: 10px !important;
1878
+
1879
+ }
1880
+
1881
+
1882
+
1883
+ .mat-mdc-option .mdc-list-item__primary-text {
1884
+
1885
+ white-space: nowrap !important;
1886
+
1887
+ }
1888
+
1889
+
1890
+
1891
+ .mat-mdc-tab-group.mat-mdc-tab-group-stretch-tabs>.mat-mdc-tab-header .mat-mdc-tab {
1892
+
1893
+ flex-grow: 0 !important;
1894
+
1895
+ }
1896
+
1897
+
1898
+
1899
+ /*Mat Tab CSS here */
1900
+
1901
+ /* TODO(mdc-migration): The following rule targets internal classes of tabs that may no longer apply for the MDC version. */
1902
+
1903
+ .mat-mdc-tab-body.mat-tab-body-active {
1904
+
1905
+ overflow: unset !important;
1906
+
1907
+ // overflow-y: scroll;
1908
+
1909
+ // overflow-x: scroll;
1910
+
1911
+ }
1912
+
1913
+
1914
+
1915
+ .mat-mdc-tab-body-content {
1916
+
1917
+ overflow: unset !important;
1918
+
1919
+ background: var(--container) !important;
1920
+
1921
+ }
1922
+
1923
+
1924
+
1925
+ .mdc-tab {
1926
+
1927
+ min-width: unset !important;
1928
+
1929
+ }
1930
+
1931
+
1932
+
1933
+ //mat-tab-ink-bar
1934
+
1935
+ /* .mat-mdc-tab-group.mat-primary .mat-ink-bar,
1936
+
1937
+ .mat-mdc-tab-nav-bar.mat-primary .mat-ink-bar {
1938
+
1939
+   background-color: #1852b2;
1940
+
1941
+   width: 2.15rem !important;
1942
+
1943
+   border-radius: 10px !important;
1944
+
1945
+   height: 10% !important;
1946
+
1947
+   margin-left: 22px !important;
1948
+
1949
+ } */
1950
+
1951
+
1952
+
1953
+ //mat-tab-css
1954
+
1955
+ /* TODO(mdc-migration): The following rule targets internal classes of tabs that may no longer apply for the MDC version. */
1956
+
1957
+ mat-tab-body {
1958
+
1959
+ width: -webkit-fill-available !important;
1960
+
1961
+ }
1962
+
1963
+
1964
+
1965
+ /* TODO(mdc-migration): The following rule targets internal classes of tabs that may no longer apply for the MDC version. */
1966
+
1967
+ mat-tab-header {
1968
+
1969
+ border: 1px solid var(--ds-table-border) !important;
1970
+
1971
+ }
1972
+
1973
+
1974
+
1975
+ /* TODO(mdc-migration): The following rule targets internal classes of tabs that may no longer apply for the MDC version. */
1976
+
1977
+ .mat-tab-header-pagination-before,
1978
+
1979
+ .mat-tab-header-pagination-after {
1980
+
1981
+ //padding-left: 4px;
1982
+
1983
+ display: none !important;
1984
+
1985
+ }
1986
+
1987
+
1988
+
1989
+ /* TODO(mdc-migration): The following rule targets internal classes of tabs that may no longer apply for the MDC version. */
1990
+
1991
+ .mat-tab-label-container {
1992
+
1993
+ background: var(--ds-table-header) 0% 0% no-repeat padding-box !important;
1994
+
1995
+ opacity: 1;
1996
+
1997
+ }
1998
+
1999
+
2000
+
2001
+ .mdc-tab-indicator {
2002
+
2003
+ justify-content: unset !important;
2004
+
2005
+ }
2006
+
2007
+
2008
+
2009
+ .mat-mdc-tab-label-container {
2010
+
2011
+ border-bottom: none !important;
2012
+
2013
+ border-bottom-color: transparent !important;
2014
+
2015
+ border-bottom-width: 0px !important;
2016
+
2017
+ border-bottom-style: none !important;
2018
+
2019
+ }
2020
+
2021
+
2022
+
2023
+ .mdc-tab-indicator__content--underline {
2024
+
2025
+ border-top-style: solid !important;
2026
+
2027
+ border-top-color: #3f86f0 !important;
2028
+
2029
+ }
2030
+
2031
+
2032
+
2033
+ .mat-mdc-tab-label-container {
2034
+
2035
+ height: 30px;
2036
+
2037
+ }
2038
+
2039
+
2040
+
2041
+ .mat-mdc-tab-group.mat-mdc-tab-group-stretch-tabs>.mat-mdc-tab-header .mat-mdc-tab {
2042
+
2043
+ height: 34px !important;
2044
+
2045
+ }
2046
+
2047
+
2048
+
2049
+ .mdc-tab {
2050
+
2051
+ padding: 0px 20px !important;
2052
+
2053
+ }
2054
+
2055
+
2056
+
2057
+ .mat-mdc-form-field-infix {
2058
+
2059
+ align-content: center;
2060
+
2061
+ }
2062
+
2063
+
2064
+
2065
+ .segmentName {
2066
+
2067
+ &:focus {
2068
+
2069
+ border: 0.1rem solid black !important;
2070
+
2071
+ padding: 0% 2% !important;
2072
+
2073
+ }
2074
+
2075
+ }
2076
+
2077
+
2078
+
2079
+ .error-font {
2080
+
2081
+ font-size: 10px !important;
2082
+
2083
+ font-family: latoregular !important;
2084
+
2085
+ color: #f44336 !important;
2086
+
2087
+ line-height: 1;
2088
+
2089
+ padding-top: 3px;
2090
+
2091
+ padding-left: 13px;
2092
+
2093
+ }
2094
+
2095
+
2096
+
2097
+ .warning-boxY {
2098
+
2099
+ height: 44px;
2100
+
2101
+ background-color: #f7f7f7;
2102
+
2103
+ font-size: 1.2rem;
2104
+
2105
+ align-items: center;
2106
+
2107
+ background: #f8f8f8 0% 0% no-repeat padding-box;
2108
+
2109
+ position: relative;
2110
+
2111
+ }
2112
+
2113
+
2114
+
2115
+ .headerStrip {
2116
+
2117
+ height: 40px;
2118
+
2119
+ align-content: center;
2120
+
2121
+ }
2122
+
2123
+
2124
+
2125
+ .topHead {
2126
+
2127
+ font-size: 13px;
2128
+
2129
+ font-family: "LatoBold";
2130
+
2131
+ color: #1c2431;
2132
+
2133
+ }
2134
+
2135
+
2136
+
2137
+ .imgbottom {
2138
+
2139
+ // border-bottom: 1px solid #C9C9C9;
2140
+
2141
+ cursor: pointer;
2142
+
2143
+ padding: 10px 10px 10px 15px;
2144
+
2145
+ }
2146
+
2147
+
2148
+
2149
+ .login-background {
2150
+
2151
+ height: 100vh;
2152
+
2153
+ background-size: 100% 100vh;
2154
+
2155
+ background-image: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
2156
+
2157
+ background-position: 50% 50%;
2158
+
2159
+ }
2160
+
2161
+
2162
+
2163
+ mat-icon {
2164
+
2165
+ font-size: 20px;
2166
+
2167
+ height: fit-content !important;
2168
+
2169
+ width: fit-content !important;
2170
+
2171
+ }
2172
+
2173
+
2174
+
2175
+ .button {
2176
+
2177
+ cursor: pointer;
2178
+
2179
+ display: flex;
2180
+
2181
+ align-items: center;
2182
+
2183
+ justify-content: center;
2184
+
2185
+ gap: 0.5rem;
2186
+
2187
+ border-radius: 5px;
2188
+
2189
+ padding: 0.3rem 1.5rem;
2190
+
2191
+ font-family: "LatoBold";
2192
+
2193
+ font-size: 12px;
2194
+
2195
+
2196
+
2197
+ .button-icon {
2198
+
2199
+ display: flex;
2200
+
2201
+ align-items: center;
2202
+
2203
+ justify-content: center;
2204
+
2205
+
2206
+
2207
+ mat-icon {
2208
+
2209
+ font-size: 13px;
2210
+
2211
+ height: fit-content;
2212
+
2213
+ width: fit-content;
2214
+
2215
+ }
2216
+
2217
+ }
2218
+
2219
+ }
2220
+
2221
+
2222
+
2223
+ // .button-fill{
2224
+
2225
+ //  background:primaryBlueColor;
2226
+
2227
+ //  color:white,
2228
+
2229
+
2230
+
2231
+ // }
2232
+
2233
+ // .button-outline{
2234
+
2235
+ //  background: white;
2236
+
2237
+ //  color: $primaryBlueColor;
2238
+
2239
+ //  border: 1px solid $primaryBlueColor;
2240
+
2241
+ // }
2242
+
2243
+
2244
+
2245
+ /*********checkbox**/
2246
+
2247
+
2248
+
2249
+ .mat-mdc-checkbox .mdc-checkbox__ripple {
2250
+
2251
+ opacity: 0 !important;
2252
+
2253
+ }
2254
+
2255
+
2256
+
2257
+ .mat-mdc-checkbox-ripple,
2258
+
2259
+ .mdc-checkbox__ripple {
2260
+
2261
+ opacity: 0 !important;
2262
+
2263
+ }
2264
+
2265
+
2266
+
2267
+ .mdc-checkbox__background {
2268
+
2269
+ height: 15px !important;
2270
+
2271
+ width: 15px !important;
2272
+
2273
+ }
2274
+
2275
+
2276
+
2277
+ .mdc-checkbox__native-control:enabled:checked~.mdc-checkbox__background {
2278
+
2279
+ border-color: #3f86f0 !important;
2280
+
2281
+ background-color: #0071bc !important;
2282
+
2283
+ }
2284
+
2285
+
2286
+
2287
+ .mdc-checkbox__checkmark {
2288
+
2289
+ color: white !important;
2290
+
2291
+ width: 7px;
2292
+
2293
+ // height: 3px;
2294
+
2295
+ }
2296
+
2297
+
2298
+
2299
+ .mat-pseudo-checkbox {
2300
+
2301
+ width: 12px !important;
2302
+
2303
+ height: 12px !important;
2304
+
2305
+ margin-right: 8px !important;
2306
+
2307
+ }
2308
+
2309
+
2310
+
2311
+ .mat-pseudo-checkbox-full {
2312
+
2313
+ border: 1px solid #3f86f0 !important;
2314
+
2315
+ width: 12px !important;
2316
+
2317
+ height: 12px !important;
2318
+
2319
+ }
2320
+
2321
+ .mat-button-toggle-checked .mat-button-toggle-checkbox-wrapper {
2322
+
2323
+ width: 0px !important;
2324
+
2325
+ }
2326
+
2327
+ /****Scroll bar****/
2328
+
2329
+ /* width */
2330
+
2331
+ ::-webkit-scrollbar {
2332
+
2333
+ width: 7px !important;
2334
+
2335
+ height: 7px !important;
2336
+
2337
+ }
2338
+
2339
+
2340
+
2341
+ /* Handle */
2342
+
2343
+ ::-webkit-scrollbar-thumb {
2344
+
2345
+ background: #a5abb3 !important;
2346
+
2347
+ border-radius: 10px !important;
2348
+
2349
+ }
2350
+
2351
+
2352
+
2353
+ /* Handle on hover */
2354
+
2355
+ ::-webkit-scrollbar-thumb:hover {
2356
+
2357
+ background: #8d9096 !important;
2358
+
2359
+ }
2360
+
2361
+ // make scrollbar handle transparent
2362
+
2363
+ .hide-scroll::-webkit-scrollbar-thumb:vertical {
2364
+
2365
+ background: transparent !important;
2366
+
2367
+ }
2368
+
2369
+
2370
+
2371
+ /*********/
2372
+
2373
+
2374
+
2375
+ .mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__leading,
2376
+
2377
+ .mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__notch,
2378
+
2379
+ .mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__trailing {
2380
+
2381
+ border-color: #3f86f0 !important;
2382
+
2383
+ }
2384
+
2385
+
2386
+
2387
+ .mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__leading,
2388
+
2389
+ .mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__notch,
2390
+
2391
+ .mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__trailing {
2392
+
2393
+ border-color: #3f86f0 !important;
2394
+
2395
+ }
2396
+
2397
+
2398
+
2399
+ .mdc-text-field--outlined:not(.mdc-text-field--disabled) .mat-mdc-notch-piece {
2400
+
2401
+ border-color: #dcdcdc !important;
2402
+
2403
+ }
2404
+
2405
+
2406
+
2407
+ .mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field .mdc-notched-outline__notch {
2408
+
2409
+ border-left: none !important;
2410
+
2411
+ }
2412
+
2413
+
2414
+
2415
+ .header {
2416
+
2417
+ background: var(--header-strip);
2418
+
2419
+ width: 100%;
2420
+
2421
+ height: 45px;
2422
+
2423
+ background-size: cover;
2424
+
2425
+ }
2426
+
2427
+
2428
+
2429
+ .material-icons {
2430
+
2431
+ font-family: "Material Icons";
2432
+
2433
+ font-weight: normal;
2434
+
2435
+ font-style: normal;
2436
+
2437
+ font-size: 24px;
2438
+
2439
+ display: inline-block;
2440
+
2441
+ line-height: 1;
2442
+
2443
+ text-transform: none;
2444
+
2445
+ letter-spacing: normal;
2446
+
2447
+ word-wrap: normal;
2448
+
2449
+ white-space: nowrap;
2450
+
2451
+ direction: ltr;
2452
+
2453
+ cursor: pointer;
2454
+
2455
+ -webkit-font-smoothing: antialiased;
2456
+
2457
+ text-rendering: optimizeLegibility;
2458
+
2459
+ -moz-osx-font-smoothing: grayscale;
2460
+
2461
+ font-feature-settings: "liga";
2462
+
2463
+ }
2464
+
2465
+
2466
+
2467
+ .col-10 {
2468
+
2469
+ flex: 0 0 auto;
2470
+
2471
+ max-width: 83.33333333%;
2472
+
2473
+ }
2474
+
2475
+
2476
+
2477
+ //searchBar with search icon
2478
+
2479
+ .iconicSearchBar {
2480
+
2481
+ margin: 1.1rem 0 1.2rem 0;
2482
+
2483
+ display: flex;
2484
+
2485
+ background: #fff 0% 0% no-repeat padding-box;
2486
+
2487
+ border: 1px solid #d9d9d9;
2488
+
2489
+ border-radius: 5px;
2490
+
2491
+ opacity: 1;
2492
+
2493
+ width: 100%;
2494
+
2495
+ height: 3.5rem;
2496
+
2497
+ padding: 9px 15px 9px 12px !important;
2498
+
2499
+
2500
+
2501
+ .searchInput,
2502
+
2503
+ .searchInput:focus {
2504
+
2505
+ outline: none;
2506
+
2507
+ border: none;
2508
+
2509
+ width: 100%;
2510
+
2511
+ font-family: LatoRegular;
2512
+
2513
+ font-size: 13px;
2514
+
2515
+ color: #1c2431;
2516
+
2517
+ background: #fff;
2518
+
2519
+ }
2520
+
2521
+
2522
+
2523
+ .searchInput::placeholder {
2524
+
2525
+ font-size: 1.3rem !important;
2526
+
2527
+ color: #a5a5a5;
2528
+
2529
+ }
2530
+
2531
+
2532
+
2533
+ .searchLabel {
2534
+
2535
+ border-radius: 0px 5px 5px 0px !important;
2536
+
2537
+ width: 10%;
2538
+
2539
+ }
2540
+
2541
+
2542
+
2543
+ .search-image {
2544
+
2545
+ height: 1.6rem;
2546
+
2547
+ padding-bottom: 3%;
2548
+
2549
+ }
2550
+
2551
+ }
2552
+
2553
+
2554
+
2555
+ .latoRegular {
2556
+
2557
+ font-family: LatoRegular;
2558
+
2559
+ font-size: 12px;
2560
+
2561
+ }
2562
+