@annalib/anna-core 37.0.23 → 37.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/README.md +28 -28
  2. package/fesm2022/annalib-anna-core.mjs +50 -143
  3. package/fesm2022/annalib-anna-core.mjs.map +1 -1
  4. package/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.d.ts +5 -8
  5. package/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.d.ts +3 -18
  6. package/package.json +1 -1
  7. package/src/lib/anna-common-scss/_animate.scss +27 -27
  8. package/src/lib/anna-common-scss/_application-spacing.scss +8 -8
  9. package/src/lib/anna-common-scss/_bootstrap-tooltip.scss +29 -29
  10. package/src/lib/anna-common-scss/_button.scss +18 -18
  11. package/src/lib/anna-common-scss/_colors.scss +107 -107
  12. package/src/lib/anna-common-scss/_common-order-listing-table.scss +190 -190
  13. package/src/lib/anna-common-scss/_custom-anna-datepicker.scss +14 -14
  14. package/src/lib/anna-common-scss/_customDropdown.scss +126 -126
  15. package/src/lib/anna-common-scss/_dashboard-partials.scss +107 -107
  16. package/src/lib/anna-common-scss/_date-picker-form.scss +87 -87
  17. package/src/lib/anna-common-scss/_drag-and-drop.scss +22 -22
  18. package/src/lib/anna-common-scss/_easy-filter.scss +139 -139
  19. package/src/lib/anna-common-scss/_edit-filter-popup.scss +80 -80
  20. package/src/lib/anna-common-scss/_email-button.scss +89 -89
  21. package/src/lib/anna-common-scss/_filters.scss +728 -728
  22. package/src/lib/anna-common-scss/_font.scss +9 -9
  23. package/src/lib/anna-common-scss/_fonts.scss +86 -86
  24. package/src/lib/anna-common-scss/_generic-modal.scss +63 -63
  25. package/src/lib/anna-common-scss/_generic-table-common.scss +220 -220
  26. package/src/lib/anna-common-scss/_generic-tooltip-html.scss +69 -69
  27. package/src/lib/anna-common-scss/_gt-table.scss +586 -586
  28. package/src/lib/anna-common-scss/_icons.scss +3 -3
  29. package/src/lib/anna-common-scss/_legend.scss +11 -11
  30. package/src/lib/anna-common-scss/_mat-button-toggle.scss +68 -68
  31. package/src/lib/anna-common-scss/_mat-menu.scss +17 -17
  32. package/src/lib/anna-common-scss/_mixins.scss +187 -187
  33. package/src/lib/anna-common-scss/_modal.scss +37 -37
  34. package/src/lib/anna-common-scss/_popup-filter-toggle-button.scss +37 -37
  35. package/src/lib/anna-common-scss/_scrollbar.scss +14 -14
  36. package/src/lib/anna-common-scss/_show-hide-total-row.scss +27 -27
  37. package/src/lib/anna-common-scss/_sort.scss +30 -30
  38. package/src/lib/anna-common-scss/_toggle.scss +86 -86
  39. package/src/lib/anna-common-scss/style.scss +7 -7
  40. package/src/lib/anna-common-scss/third-party-lib/_angular-material-mat-radio.scss +26 -26
  41. package/src/lib/anna-common-scss/third-party-lib/_anna-mat-button-toggle-group-size-lg.scss +39 -39
  42. package/src/lib/anna-common-scss/third-party-lib/_mat-autocomplete.scss +31 -31
  43. package/src/lib/anna-common-scss/user-module-common-scss/_user-module.scss +65 -65
  44. package/src/lib/anna-common-scss/user-module-common-scss/_user-tag-status.scss +111 -111
@@ -1,728 +1,728 @@
1
- @use "./fonts" as *;
2
- @use "./colors" as *;
3
-
4
- ::ng-deep .tooltip-inner {
5
- max-height: 22rem;
6
- background-color: white;
7
- border: 1px solid white;
8
- border-radius: 5px;
9
- box-shadow:
10
- 0 2px 2px 0 rgba(0, 0, 0, 0.24),
11
- 0 0 2px 0 rgba(0, 0, 0, 0.12);
12
- max-width: 251px;
13
- width: 100%;
14
- padding: 0 !important;
15
- div.radio-container {
16
- flex-wrap: wrap;
17
- }
18
- }
19
-
20
- ::ng-deep .md-drppicker {
21
- box-shadow: unset !important;
22
- }
23
-
24
- ::ng-deep .available {
25
- color: #999;
26
- }
27
-
28
- ::ng-deep .bs-tooltip-bottom .arrow::before {
29
- border-bottom-color: #fff !important;
30
- }
31
- ::ng-deep .bs-tooltip-left .arrow::before {
32
- border-left-color: #fff !important;
33
- }
34
-
35
- ::ng-deep .tooltip.show {
36
- opacity: 1;
37
- }
38
-
39
- .input {
40
- text-align: left;
41
- margin: 5px;
42
- display: flex;
43
- align-items: center;
44
- width: 230px;
45
- white-space: nowrap;
46
- margin-right: 10px;
47
- }
48
-
49
- .data {
50
- color: #000000;
51
- font-weight: 700;
52
- margin-left: 5px;
53
- margin-right: 5px;
54
- }
55
-
56
- span.data {
57
- display: inline-block;
58
- text-overflow: ellipsis;
59
- white-space: pre;
60
- width: 100%;
61
- overflow: hidden;
62
- }
63
-
64
- .check-box {
65
- font-size: 14px;
66
- cursor: pointer;
67
- position: relative;
68
- top: -1px;
69
- }
70
-
71
- span.mdi-filter.active {
72
- color: black;
73
- opacity: 1 !important;
74
- pointer-events: all !important;
75
- }
76
-
77
- p {
78
- margin-bottom: 0;
79
- line-height: initial;
80
- }
81
-
82
- span.mdi-filter {
83
- color: #cbcbcb;
84
- }
85
- //Slider
86
- // ::ng-deep .ngx-slider {
87
- // margin: 5px 0 2px 0 !important;
88
- // width: 100% !important;
89
- // }
90
-
91
- // ::ng-deep span.ngx-slider-bubble.ngx-slider-model-value {
92
- // display: block !important;
93
- // padding: 2px !important;
94
- // box-shadow: rgb(0 0 0 / 35%) 0px 3px 8px !important;
95
- // height: 20px !important;
96
- // }
97
-
98
- ::ng-deep .ngx-slider-pointer {
99
- top: -5px !important;
100
- width: 12px !important;
101
- height: 12px !important;
102
- background: #bdbdbd !important;
103
- border: 1px solid #ffffff !important;
104
- box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3) !important;
105
- border-radius: 16px !important;
106
- }
107
-
108
- @mixin button-text {
109
- text-align: center;
110
- outline: none;
111
- @include fonts(Roboto, $fs-12, normal, normal, normal, 1.67, normal);
112
- }
113
-
114
- input:focus {
115
- outline: none;
116
- }
117
- input::placeholder {
118
- color: $lightGray-6;
119
- }
120
-
121
- .cancel-btn {
122
- background: $lavenderBlue;
123
- color: $primary-color;
124
- }
125
-
126
- .apply-btn {
127
- background: $primary-color;
128
- color: white;
129
- margin-left: $fs-5;
130
- }
131
-
132
- div.radio-container {
133
- display: flex;
134
- white-space: nowrap;
135
- justify-content: space-between;
136
- background-color: $filterRadioContainer;
137
- // padding: $fs-2 $fs-2 $fs-2 $fs-4;
138
- border-radius: $fs-2;
139
- margin: 0.4375rem $fs-7 $fs-4 $fs-7;
140
- div {
141
- flex: 1;
142
- width: 50%;
143
- }
144
- div.full-width {
145
- width: 100%;
146
- }
147
- input {
148
- position: relative;
149
- top: $fs-2;
150
- margin-right: $fs-4;
151
- }
152
- label {
153
- @include fonts(Roboto, $fs-14, normal, normal, normal, 1.29, 0);
154
- color: $charcoal;
155
- margin: 0;
156
- padding-left: $fs-2;
157
- }
158
- label:first-of-type {
159
- margin-right: $fs-3;
160
- }
161
- input[type="radio"] {
162
- -webkit-appearance: none;
163
- -moz-appearance: none;
164
- appearance: none;
165
- display: inline-block;
166
- width: $fs-15;
167
- height: $fs-15;
168
- padding: $fs-2;
169
- background-clip: content-box;
170
- border: $fs-2 solid $primary-color;
171
- background-color: transparent;
172
- border-radius: 50%;
173
- }
174
-
175
- /* appearance for checked radiobutton */
176
- input[type="radio"]:checked {
177
- background-color: $primary-color;
178
- }
179
- }
180
-
181
- .checkbox-filter-buttons-container {
182
- padding: 0 8px !important;
183
- }
184
-
185
- .buttons-container {
186
- display: flex;
187
- margin: 0px auto 0.4375rem;
188
- justify-content: center;
189
- padding: 0 12px;
190
-
191
- .button {
192
- padding: 0 10px;
193
- width: 100%;
194
- margin: 8px 0 0 0;
195
- text-overflow: ellipsis;
196
- white-space: nowrap;
197
- overflow: hidden;
198
- }
199
-
200
- button:last-of-type {
201
- background-color: $primary-color;
202
- color: white;
203
- margin-left: 0.5rem;
204
- // margin-right: 0.5rem;
205
- }
206
-
207
- button.disabled {
208
- background: $gray74;
209
- opacity: 0.5;
210
- color: $charcoal;
211
- }
212
- }
213
-
214
- .button {
215
- display: inline-block;
216
- // width: 50%;
217
- margin: 8px 4px 0 8px;
218
- padding: 0px 16px;
219
- border-radius: 4px;
220
- @include button-text();
221
- border: none;
222
- color: #268bff;
223
- background-color: #e5f1ff;
224
- // height: 20px;
225
- }
226
-
227
- .search-box {
228
- display: flex;
229
- align-items: center;
230
- color: #c8c8c8;
231
- border: 1px solid #e6e6e6;
232
- border-radius: $fs-2;
233
- margin: $fs-4 $fs-7 $fs-3 $fs-7;
234
- height: $fs-24;
235
- padding: $fs-3 8px $fs-3 $fs-8;
236
- .search-bar-close {
237
- margin-left: auto;
238
- float: right;
239
- }
240
- }
241
-
242
- .search-icon {
243
- margin: 0 4px 0 0;
244
- font-size: var(--filter-search-icon-fs);
245
- color: $lightGray-7;
246
- }
247
-
248
- .filter-icon {
249
- justify-content: right;
250
- margin-left: auto;
251
- color: #d4d4d4;
252
- color: #a1a1a1;
253
- font-size: 16px;
254
- cursor: pointer;
255
- }
256
-
257
- .data {
258
- margin: 0 13px 0px 8px;
259
- @include fonts(Roboto, var(--filter-checkbox-label-fs), normal, normal, normal, 1.86, "");
260
- color: $charcoal;
261
- }
262
-
263
- .search-input {
264
- margin: 1px 0 1px 4px;
265
- @include fonts(Roboto, var(--filter-search-fs), normal, normal, normal, normal, normal);
266
- color: $lightGray-6;
267
- width: calc(100% - 38px);
268
- margin-left: 2px;
269
- border: none;
270
- padding: 0px;
271
- }
272
-
273
- .check-box {
274
- color: $primary-color;
275
- }
276
-
277
- .tooltip-data-container {
278
- overflow-y: scroll;
279
- max-height: 8rem;
280
- }
281
-
282
- .searchbar {
283
- width: 100%;
284
- display: flex;
285
- justify-content: flex-end;
286
- align-items: flex-end;
287
- }
288
-
289
- .clear-button {
290
- opacity: 0.5;
291
- @include fonts(Roboto, $fs-15, normal, 500, normal, normal, normal);
292
- color: $charcoal;
293
- text-decoration: underline;
294
- border: none;
295
- background-color: white;
296
- color: $charcoal;
297
- margin-left: $fs-10;
298
- padding: 0;
299
- &:focus {
300
- outline: none;
301
- box-shadow: none;
302
- }
303
- }
304
-
305
- .unchecked {
306
- color: $primary-color;
307
- }
308
-
309
- cdk-virtual-scroll-viewport.dropdown-data-container {
310
- max-height: 12.3rem;
311
- width: 100%;
312
- overflow-y: auto;
313
- overflow-x: hidden;
314
- p.input {
315
- margin-left: 0;
316
- span.mi {
317
- padding-left: $fs-7;
318
- }
319
- }
320
- p.input:hover {
321
- background-color: #ebebeb;
322
- cursor: pointer;
323
- // span {
324
- // color: white;
325
- // }
326
- }
327
- }
328
-
329
- cdk-virtual-scroll-viewport.dropdown-data-container::-webkit-scrollbar {
330
- width: $fs-3;
331
- }
332
-
333
- cdk-virtual-scroll-viewport.dropdown-data-container::-webkit-scrollbar-thumb {
334
- color: lightgray;
335
- background: lightgray;
336
- }
337
-
338
- section.min-maxContainer {
339
- display: flex;
340
- justify-content: center;
341
- margin-bottom: -$fs-2;
342
- margin-top: $fs-8;
343
- width: 100%;
344
- input {
345
- width: 30%;
346
- height: 1.5rem;
347
- border: 1px solid lightgray;
348
- color: gray;
349
- }
350
- span {
351
- display: inline-block;
352
- padding-left: $fs-8;
353
- padding-right: $fs-8;
354
- position: relative;
355
- top: $fs-5;
356
- color: $lightDimGray;
357
- font-size: var(--page-message-content-fs);
358
- }
359
- }
360
-
361
- .time-container {
362
- width: 100%;
363
- display: flex;
364
- padding: 0 $fs-12;
365
- input.form-control:disabled {
366
- background-color: white;
367
- width: $fs-45;
368
- }
369
-
370
- input.numberInput:focus {
371
- box-shadow: none;
372
- border-color: #c2cfd6;
373
- }
374
-
375
- .dot {
376
- color: #cbcbcb;
377
- position: relative;
378
- left: -7px;
379
- font-size: 17px;
380
- }
381
- div.arrow-container {
382
- flex-direction: column;
383
- display: flex;
384
- margin-top: $fs-6;
385
- width: 9px;
386
- height: 18px;
387
- margin-right: 0.875rem;
388
- i {
389
- color: black;
390
- cursor: pointer;
391
- max-height: 9px;
392
- font-size: 20px;
393
- width: 10px;
394
- &:before {
395
- width: 0;
396
- height: 0;
397
- pointer-events: none;
398
- position: relative;
399
- left: -9px;
400
- top: -11px;
401
- }
402
- }
403
- // i.downward {
404
- // transform: rotate(180deg);
405
- // }
406
- }
407
- }
408
-
409
- .mdi-filter {
410
- cursor: pointer;
411
- }
412
-
413
- .time-label-container {
414
- display: flex;
415
- justify-content: flex-start;
416
- label {
417
- margin-bottom: 0;
418
- color: $charcoal;
419
- margin-top: 0.125rem;
420
- margin-left: $fs-12;
421
- font-weight: 700;
422
- font-size: var(--dropdown-label-fs);
423
- }
424
- }
425
-
426
- .time-heading {
427
- color: black;
428
- font-size: $fs-13;
429
- text-align: left;
430
- padding-left: $fs-10;
431
- margin-top: $fs-10;
432
- font-weight: 700;
433
- }
434
-
435
- .column-clear-all {
436
- width: 94%;
437
- text-align: center;
438
- border: none;
439
- font-size: var(--filter-clear-select-btn-fs);
440
- background: none;
441
- text-decoration: underline;
442
- color: $primary-color;
443
- &:disabled {
444
- opacity: 0.5;
445
- color: $charcoal;
446
- font-weight: normal;
447
- }
448
- &.align-center {
449
- text-align: center;
450
- }
451
- }
452
-
453
- .checkbox-container {
454
- display: flex;
455
- padding-inline: 0.625rem;
456
- .data {
457
- text-align: left;
458
- }
459
- &:first-of-type {
460
- margin-top: 0.625rem;
461
- font-weight: 500;
462
- }
463
- }
464
-
465
- .column-clear-all {
466
- width: 94%;
467
- text-align: center;
468
- border: none;
469
- background: none;
470
- text-decoration: underline;
471
- color: $primary-color;
472
- &:disabled {
473
- opacity: 0.5;
474
- color: $charcoal;
475
- font-weight: normal;
476
- }
477
- &.align-center {
478
- text-align: center;
479
- }
480
- }
481
-
482
- span.mdi-filter-variant.disabled {
483
- pointer-events: none;
484
- opacity: 0.5;
485
- }
486
-
487
- .datepicker-container {
488
- width: 100%;
489
- }
490
-
491
- span.mdi-filter-variant {
492
- color: #cbcbcb;
493
- cursor: pointer;
494
- font-size: 0.875rem;
495
- }
496
-
497
- span.mdi-filter-variant.active {
498
- color: #000000;
499
- }
500
-
501
- p.filter-tab {
502
- @include fonts(Roboto, var(--filter-tab-fs), normal, normal, normal, 1.29, normal);
503
- color: #1b88ff;
504
- border-radius: 5px;
505
- background-color: #f4f4f4;
506
- padding-inline: 8px;
507
- cursor: pointer;
508
- overflow: hidden;
509
- text-align: center;
510
- text-overflow: ellipsis;
511
- padding-block: 3px;
512
- }
513
-
514
- p.filter-tab.active {
515
- color: white;
516
- background-color: #1b88ff;
517
- }
518
-
519
- button.filter-text-btn {
520
- background: white;
521
- text-decoration: underline;
522
- @include fonts(Roboto, var(--filter-clear-select-btn-fs), normal, normal, normal, normal, normal);
523
- border: none;
524
- color: #268bff;
525
- &:disabled {
526
- color: #b1b1b1;
527
- cursor: not-allowed;
528
- }
529
- margin-inline: 4px;
530
- margin-top: 2px;
531
- }
532
-
533
- ::ng-deep .non-edit-datepicker-tooltip .tooltip-inner {
534
- max-width: 310px !important;
535
- width: 283px !important;
536
- overflow-y: initial !important;
537
- padding: 0px !important;
538
- }
539
-
540
- input.slider-text::-webkit-outer-spin-button,
541
- input.slider-text::-webkit-inner-spin-button {
542
- -webkit-appearance: none;
543
- margin: 0;
544
- }
545
-
546
- input.slider-text {
547
- -moz-appearance: textfield;
548
- }
549
-
550
- input.slider-text.red-border {
551
- border: 1px solid #f44336 !important;
552
- }
553
-
554
- ::ng-deep .checkbox-sort p.sort-container {
555
- margin-top: 8px !important;
556
- padding-bottom: 8px !important;
557
- }
558
-
559
- i.mdi-close {
560
- cursor: pointer;
561
- }
562
-
563
- i.mdi-close.disable-close-icon {
564
- pointer-events: none;
565
- cursor: not-allowed;
566
- }
567
-
568
- input.error-border {
569
- border: 1px solid #f44336 !important;
570
- }
571
-
572
- ::ng-deep .non-edit-checkbox-tooltip .tooltip-inner {
573
- width: 238px !important;
574
- padding: 0px !important;
575
- }
576
-
577
- ::ng-deep .non-edit-slider-tooltip .tooltip-inner {
578
- width: 238px !important;
579
- padding: 0px !important;
580
- }
581
-
582
- ::ng-deep .non-edit-time-tooltip .tooltip-inner {
583
- width: 250px !important;
584
- padding: 0px !important;
585
- }
586
-
587
- ::ng-deep.non-edit-time-tooltip.bs-tooltip-start {
588
- padding: 0.4rem;
589
-
590
- .tooltip-arrow {
591
- right: 0;
592
- top: 5px !important;
593
- width: var(--bs-tooltip-arrow-height);
594
- height: var(--bs-tooltip-arrow-width);
595
-
596
- &::before {
597
- border-left-color: white;
598
- left: -1px;
599
- border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5)
600
- var(--bs-tooltip-arrow-height);
601
- }
602
- }
603
- }
604
-
605
- ::ng-deep .no-bottom-border {
606
- p.sort-container {
607
- border-bottom: none !important;
608
- }
609
- }
610
-
611
- //Slider Filter Css
612
-
613
- ::ng-deep .ngx-slider-pointer-min {
614
- &::after {
615
- display: none;
616
- }
617
- }
618
-
619
- ::ng-deep .ngx-slider-pointer-max {
620
- &::after {
621
- display: none;
622
- }
623
- }
624
-
625
- ::ng-deep .ngx-slider span.ngx-slider-pointer {
626
- width: 12px;
627
- height: 12px;
628
- top: -5px;
629
- background-color: #bdbdbd;
630
- }
631
-
632
- ::ng-deep .ngx-slider span.ngx-slider-bar {
633
- height: 3px;
634
- background: #ededed;
635
- }
636
-
637
- ::ng-deep .ngx-slider span.ngx-slider-selection {
638
- background: #bdbdbd;
639
- }
640
-
641
- //Aligning the label to bottom
642
- ::ng-deep .ngx-slider span.ngx-slider-bubble {
643
- bottom: -22px;
644
- font-size: 12px;
645
- color: #333;
646
- }
647
-
648
- ::ng-deep .show-min.ngx-slider span.ngx-slider-model-value {
649
- background: white;
650
- box-shadow:
651
- 0 6px 10px 0 rgba(0, 0, 0, 0.3),
652
- 0 2px 2px 0 rgba(0, 0, 0, 0.2);
653
- }
654
-
655
- ::ng-deep .show-max.ngx-slider span.ngx-slider-model-high {
656
- background: white;
657
- box-shadow: none;
658
- // left: auto !important;
659
- }
660
-
661
- ::ng-deep .ngx-slider span.ngx-slider-combined {
662
- background: white;
663
- box-shadow:
664
- 0 6px 10px 0 rgba(0, 0, 0, 0.3),
665
- 0 2px 2px 0 rgba(0, 0, 0, 0.2);
666
- }
667
-
668
- ::ng-deep .ngx-slider {
669
- top: 10px !important;
670
- margin: 5px 0 2px 0 !important;
671
- }
672
-
673
- ::ng-deep .ngx-slider-animate {
674
- top: 0 !important;
675
- }
676
-
677
- .sidebar-slider {
678
- margin-bottom: 35px !important;
679
- margin-left: 5px;
680
- margin-right: 5px;
681
- }
682
-
683
- .slider-placeholder {
684
- height: 14px;
685
- }
686
- //end of slider css
687
-
688
- //DatePicker css
689
- ::ng-deep .filter-calendar {
690
- select.form-select:focus {
691
- border-color: rgb(194, 207, 214);
692
- box-shadow: none;
693
- }
694
-
695
- select.form-select {
696
- background-color: white;
697
- }
698
- }
699
-
700
- .no-data-case {
701
- padding-left: 0.4375rem !important;
702
- font-size: var(--filter-checkbox-label-fs) !important;
703
- margin-top: 10px !important;
704
- cursor: pointer;
705
- }
706
-
707
- .custom-column-checkbox-checked,
708
- .custom-column-checkbox-unchecked {
709
- font-size: 0.875rem;
710
- cursor: pointer;
711
- }
712
-
713
- .custom-column-checkbox-checked {
714
- color: $primary-color;
715
- }
716
-
717
- .custom-column-checkbox-unchecked {
718
- color: #2962ff;
719
- }
720
-
721
- .virtual-scroll-div {
722
- position: absolute;
723
- top: 0;
724
- left: 0;
725
- width: 100%;
726
- height: 100%;
727
- pointer-events: none;
728
- }
1
+ @use "./fonts" as *;
2
+ @use "./colors" as *;
3
+
4
+ ::ng-deep .tooltip-inner {
5
+ max-height: 22rem;
6
+ background-color: white;
7
+ border: 1px solid white;
8
+ border-radius: 5px;
9
+ box-shadow:
10
+ 0 2px 2px 0 rgba(0, 0, 0, 0.24),
11
+ 0 0 2px 0 rgba(0, 0, 0, 0.12);
12
+ max-width: 251px;
13
+ width: 100%;
14
+ padding: 0 !important;
15
+ div.radio-container {
16
+ flex-wrap: wrap;
17
+ }
18
+ }
19
+
20
+ ::ng-deep .md-drppicker {
21
+ box-shadow: unset !important;
22
+ }
23
+
24
+ ::ng-deep .available {
25
+ color: #999;
26
+ }
27
+
28
+ ::ng-deep .bs-tooltip-bottom .arrow::before {
29
+ border-bottom-color: #fff !important;
30
+ }
31
+ ::ng-deep .bs-tooltip-left .arrow::before {
32
+ border-left-color: #fff !important;
33
+ }
34
+
35
+ ::ng-deep .tooltip.show {
36
+ opacity: 1;
37
+ }
38
+
39
+ .input {
40
+ text-align: left;
41
+ margin: 5px;
42
+ display: flex;
43
+ align-items: center;
44
+ width: 230px;
45
+ white-space: nowrap;
46
+ margin-right: 10px;
47
+ }
48
+
49
+ .data {
50
+ color: #000000;
51
+ font-weight: 700;
52
+ margin-left: 5px;
53
+ margin-right: 5px;
54
+ }
55
+
56
+ span.data {
57
+ display: inline-block;
58
+ text-overflow: ellipsis;
59
+ white-space: pre;
60
+ width: 100%;
61
+ overflow: hidden;
62
+ }
63
+
64
+ .check-box {
65
+ font-size: 14px;
66
+ cursor: pointer;
67
+ position: relative;
68
+ top: -1px;
69
+ }
70
+
71
+ span.mdi-filter.active {
72
+ color: black;
73
+ opacity: 1 !important;
74
+ pointer-events: all !important;
75
+ }
76
+
77
+ p {
78
+ margin-bottom: 0;
79
+ line-height: initial;
80
+ }
81
+
82
+ span.mdi-filter {
83
+ color: #cbcbcb;
84
+ }
85
+ //Slider
86
+ // ::ng-deep .ngx-slider {
87
+ // margin: 5px 0 2px 0 !important;
88
+ // width: 100% !important;
89
+ // }
90
+
91
+ // ::ng-deep span.ngx-slider-bubble.ngx-slider-model-value {
92
+ // display: block !important;
93
+ // padding: 2px !important;
94
+ // box-shadow: rgb(0 0 0 / 35%) 0px 3px 8px !important;
95
+ // height: 20px !important;
96
+ // }
97
+
98
+ ::ng-deep .ngx-slider-pointer {
99
+ top: -5px !important;
100
+ width: 12px !important;
101
+ height: 12px !important;
102
+ background: #bdbdbd !important;
103
+ border: 1px solid #ffffff !important;
104
+ box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3) !important;
105
+ border-radius: 16px !important;
106
+ }
107
+
108
+ @mixin button-text {
109
+ text-align: center;
110
+ outline: none;
111
+ @include fonts(Roboto, $fs-12, normal, normal, normal, 1.67, normal);
112
+ }
113
+
114
+ input:focus {
115
+ outline: none;
116
+ }
117
+ input::placeholder {
118
+ color: $lightGray-6;
119
+ }
120
+
121
+ .cancel-btn {
122
+ background: $lavenderBlue;
123
+ color: $primary-color;
124
+ }
125
+
126
+ .apply-btn {
127
+ background: $primary-color;
128
+ color: white;
129
+ margin-left: $fs-5;
130
+ }
131
+
132
+ div.radio-container {
133
+ display: flex;
134
+ white-space: nowrap;
135
+ justify-content: space-between;
136
+ background-color: $filterRadioContainer;
137
+ // padding: $fs-2 $fs-2 $fs-2 $fs-4;
138
+ border-radius: $fs-2;
139
+ margin: 0.4375rem $fs-7 $fs-4 $fs-7;
140
+ div {
141
+ flex: 1;
142
+ width: 50%;
143
+ }
144
+ div.full-width {
145
+ width: 100%;
146
+ }
147
+ input {
148
+ position: relative;
149
+ top: $fs-2;
150
+ margin-right: $fs-4;
151
+ }
152
+ label {
153
+ @include fonts(Roboto, $fs-14, normal, normal, normal, 1.29, 0);
154
+ color: $charcoal;
155
+ margin: 0;
156
+ padding-left: $fs-2;
157
+ }
158
+ label:first-of-type {
159
+ margin-right: $fs-3;
160
+ }
161
+ input[type="radio"] {
162
+ -webkit-appearance: none;
163
+ -moz-appearance: none;
164
+ appearance: none;
165
+ display: inline-block;
166
+ width: $fs-15;
167
+ height: $fs-15;
168
+ padding: $fs-2;
169
+ background-clip: content-box;
170
+ border: $fs-2 solid $primary-color;
171
+ background-color: transparent;
172
+ border-radius: 50%;
173
+ }
174
+
175
+ /* appearance for checked radiobutton */
176
+ input[type="radio"]:checked {
177
+ background-color: $primary-color;
178
+ }
179
+ }
180
+
181
+ .checkbox-filter-buttons-container {
182
+ padding: 0 8px !important;
183
+ }
184
+
185
+ .buttons-container {
186
+ display: flex;
187
+ margin: 0px auto 0.4375rem;
188
+ justify-content: center;
189
+ padding: 0 12px;
190
+
191
+ .button {
192
+ padding: 0 10px;
193
+ width: 100%;
194
+ margin: 8px 0 0 0;
195
+ text-overflow: ellipsis;
196
+ white-space: nowrap;
197
+ overflow: hidden;
198
+ }
199
+
200
+ button:last-of-type {
201
+ background-color: $primary-color;
202
+ color: white;
203
+ margin-left: 0.5rem;
204
+ // margin-right: 0.5rem;
205
+ }
206
+
207
+ button.disabled {
208
+ background: $gray74;
209
+ opacity: 0.5;
210
+ color: $charcoal;
211
+ }
212
+ }
213
+
214
+ .button {
215
+ display: inline-block;
216
+ // width: 50%;
217
+ margin: 8px 4px 0 8px;
218
+ padding: 0px 16px;
219
+ border-radius: 4px;
220
+ @include button-text();
221
+ border: none;
222
+ color: #268bff;
223
+ background-color: #e5f1ff;
224
+ // height: 20px;
225
+ }
226
+
227
+ .search-box {
228
+ display: flex;
229
+ align-items: center;
230
+ color: #c8c8c8;
231
+ border: 1px solid #e6e6e6;
232
+ border-radius: $fs-2;
233
+ margin: $fs-4 $fs-7 $fs-3 $fs-7;
234
+ height: $fs-24;
235
+ padding: $fs-3 8px $fs-3 $fs-8;
236
+ .search-bar-close {
237
+ margin-left: auto;
238
+ float: right;
239
+ }
240
+ }
241
+
242
+ .search-icon {
243
+ margin: 0 4px 0 0;
244
+ font-size: var(--filter-search-icon-fs);
245
+ color: $lightGray-7;
246
+ }
247
+
248
+ .filter-icon {
249
+ justify-content: right;
250
+ margin-left: auto;
251
+ color: #d4d4d4;
252
+ color: #a1a1a1;
253
+ font-size: 16px;
254
+ cursor: pointer;
255
+ }
256
+
257
+ .data {
258
+ margin: 0 13px 0px 8px;
259
+ @include fonts(Roboto, var(--filter-checkbox-label-fs), normal, normal, normal, 1.86, "");
260
+ color: $charcoal;
261
+ }
262
+
263
+ .search-input {
264
+ margin: 1px 0 1px 4px;
265
+ @include fonts(Roboto, var(--filter-search-fs), normal, normal, normal, normal, normal);
266
+ color: $lightGray-6;
267
+ width: calc(100% - 38px);
268
+ margin-left: 2px;
269
+ border: none;
270
+ padding: 0px;
271
+ }
272
+
273
+ .check-box {
274
+ color: $primary-color;
275
+ }
276
+
277
+ .tooltip-data-container {
278
+ overflow-y: scroll;
279
+ max-height: 8rem;
280
+ }
281
+
282
+ .searchbar {
283
+ width: 100%;
284
+ display: flex;
285
+ justify-content: flex-end;
286
+ align-items: flex-end;
287
+ }
288
+
289
+ .clear-button {
290
+ opacity: 0.5;
291
+ @include fonts(Roboto, $fs-15, normal, 500, normal, normal, normal);
292
+ color: $charcoal;
293
+ text-decoration: underline;
294
+ border: none;
295
+ background-color: white;
296
+ color: $charcoal;
297
+ margin-left: $fs-10;
298
+ padding: 0;
299
+ &:focus {
300
+ outline: none;
301
+ box-shadow: none;
302
+ }
303
+ }
304
+
305
+ .unchecked {
306
+ color: $primary-color;
307
+ }
308
+
309
+ cdk-virtual-scroll-viewport.dropdown-data-container {
310
+ max-height: 12.3rem;
311
+ width: 100%;
312
+ overflow-y: auto;
313
+ overflow-x: hidden;
314
+ p.input {
315
+ margin-left: 0;
316
+ span.mi {
317
+ padding-left: $fs-7;
318
+ }
319
+ }
320
+ p.input:hover {
321
+ background-color: #ebebeb;
322
+ cursor: pointer;
323
+ // span {
324
+ // color: white;
325
+ // }
326
+ }
327
+ }
328
+
329
+ cdk-virtual-scroll-viewport.dropdown-data-container::-webkit-scrollbar {
330
+ width: $fs-3;
331
+ }
332
+
333
+ cdk-virtual-scroll-viewport.dropdown-data-container::-webkit-scrollbar-thumb {
334
+ color: lightgray;
335
+ background: lightgray;
336
+ }
337
+
338
+ section.min-maxContainer {
339
+ display: flex;
340
+ justify-content: center;
341
+ margin-bottom: -$fs-2;
342
+ margin-top: $fs-8;
343
+ width: 100%;
344
+ input {
345
+ width: 30%;
346
+ height: 1.5rem;
347
+ border: 1px solid lightgray;
348
+ color: gray;
349
+ }
350
+ span {
351
+ display: inline-block;
352
+ padding-left: $fs-8;
353
+ padding-right: $fs-8;
354
+ position: relative;
355
+ top: $fs-5;
356
+ color: $lightDimGray;
357
+ font-size: var(--page-message-content-fs);
358
+ }
359
+ }
360
+
361
+ .time-container {
362
+ width: 100%;
363
+ display: flex;
364
+ padding: 0 $fs-12;
365
+ input.form-control:disabled {
366
+ background-color: white;
367
+ width: $fs-45;
368
+ }
369
+
370
+ input.numberInput:focus {
371
+ box-shadow: none;
372
+ border-color: #c2cfd6;
373
+ }
374
+
375
+ .dot {
376
+ color: #cbcbcb;
377
+ position: relative;
378
+ left: -7px;
379
+ font-size: 17px;
380
+ }
381
+ div.arrow-container {
382
+ flex-direction: column;
383
+ display: flex;
384
+ margin-top: $fs-6;
385
+ width: 9px;
386
+ height: 18px;
387
+ margin-right: 0.875rem;
388
+ i {
389
+ color: black;
390
+ cursor: pointer;
391
+ max-height: 9px;
392
+ font-size: 20px;
393
+ width: 10px;
394
+ &:before {
395
+ width: 0;
396
+ height: 0;
397
+ pointer-events: none;
398
+ position: relative;
399
+ left: -9px;
400
+ top: -11px;
401
+ }
402
+ }
403
+ // i.downward {
404
+ // transform: rotate(180deg);
405
+ // }
406
+ }
407
+ }
408
+
409
+ .mdi-filter {
410
+ cursor: pointer;
411
+ }
412
+
413
+ .time-label-container {
414
+ display: flex;
415
+ justify-content: flex-start;
416
+ label {
417
+ margin-bottom: 0;
418
+ color: $charcoal;
419
+ margin-top: 0.125rem;
420
+ margin-left: $fs-12;
421
+ font-weight: 700;
422
+ font-size: var(--dropdown-label-fs);
423
+ }
424
+ }
425
+
426
+ .time-heading {
427
+ color: black;
428
+ font-size: $fs-13;
429
+ text-align: left;
430
+ padding-left: $fs-10;
431
+ margin-top: $fs-10;
432
+ font-weight: 700;
433
+ }
434
+
435
+ .column-clear-all {
436
+ width: 94%;
437
+ text-align: center;
438
+ border: none;
439
+ font-size: var(--filter-clear-select-btn-fs);
440
+ background: none;
441
+ text-decoration: underline;
442
+ color: $primary-color;
443
+ &:disabled {
444
+ opacity: 0.5;
445
+ color: $charcoal;
446
+ font-weight: normal;
447
+ }
448
+ &.align-center {
449
+ text-align: center;
450
+ }
451
+ }
452
+
453
+ .checkbox-container {
454
+ display: flex;
455
+ padding-inline: 0.625rem;
456
+ .data {
457
+ text-align: left;
458
+ }
459
+ &:first-of-type {
460
+ margin-top: 0.625rem;
461
+ font-weight: 500;
462
+ }
463
+ }
464
+
465
+ .column-clear-all {
466
+ width: 94%;
467
+ text-align: center;
468
+ border: none;
469
+ background: none;
470
+ text-decoration: underline;
471
+ color: $primary-color;
472
+ &:disabled {
473
+ opacity: 0.5;
474
+ color: $charcoal;
475
+ font-weight: normal;
476
+ }
477
+ &.align-center {
478
+ text-align: center;
479
+ }
480
+ }
481
+
482
+ span.mdi-filter-variant.disabled {
483
+ pointer-events: none;
484
+ opacity: 0.5;
485
+ }
486
+
487
+ .datepicker-container {
488
+ width: 100%;
489
+ }
490
+
491
+ span.mdi-filter-variant {
492
+ color: #cbcbcb;
493
+ cursor: pointer;
494
+ font-size: 0.875rem;
495
+ }
496
+
497
+ span.mdi-filter-variant.active {
498
+ color: #000000;
499
+ }
500
+
501
+ p.filter-tab {
502
+ @include fonts(Roboto, var(--filter-tab-fs), normal, normal, normal, 1.29, normal);
503
+ color: #1b88ff;
504
+ border-radius: 5px;
505
+ background-color: #f4f4f4;
506
+ padding-inline: 8px;
507
+ cursor: pointer;
508
+ overflow: hidden;
509
+ text-align: center;
510
+ text-overflow: ellipsis;
511
+ padding-block: 3px;
512
+ }
513
+
514
+ p.filter-tab.active {
515
+ color: white;
516
+ background-color: #1b88ff;
517
+ }
518
+
519
+ button.filter-text-btn {
520
+ background: white;
521
+ text-decoration: underline;
522
+ @include fonts(Roboto, var(--filter-clear-select-btn-fs), normal, normal, normal, normal, normal);
523
+ border: none;
524
+ color: #268bff;
525
+ &:disabled {
526
+ color: #b1b1b1;
527
+ cursor: not-allowed;
528
+ }
529
+ margin-inline: 4px;
530
+ margin-top: 2px;
531
+ }
532
+
533
+ ::ng-deep .non-edit-datepicker-tooltip .tooltip-inner {
534
+ max-width: 310px !important;
535
+ width: 283px !important;
536
+ overflow-y: initial !important;
537
+ padding: 0px !important;
538
+ }
539
+
540
+ input.slider-text::-webkit-outer-spin-button,
541
+ input.slider-text::-webkit-inner-spin-button {
542
+ -webkit-appearance: none;
543
+ margin: 0;
544
+ }
545
+
546
+ input.slider-text {
547
+ -moz-appearance: textfield;
548
+ }
549
+
550
+ input.slider-text.red-border {
551
+ border: 1px solid #f44336 !important;
552
+ }
553
+
554
+ ::ng-deep .checkbox-sort p.sort-container {
555
+ margin-top: 8px !important;
556
+ padding-bottom: 8px !important;
557
+ }
558
+
559
+ i.mdi-close {
560
+ cursor: pointer;
561
+ }
562
+
563
+ i.mdi-close.disable-close-icon {
564
+ pointer-events: none;
565
+ cursor: not-allowed;
566
+ }
567
+
568
+ input.error-border {
569
+ border: 1px solid #f44336 !important;
570
+ }
571
+
572
+ ::ng-deep .non-edit-checkbox-tooltip .tooltip-inner {
573
+ width: 238px !important;
574
+ padding: 0px !important;
575
+ }
576
+
577
+ ::ng-deep .non-edit-slider-tooltip .tooltip-inner {
578
+ width: 238px !important;
579
+ padding: 0px !important;
580
+ }
581
+
582
+ ::ng-deep .non-edit-time-tooltip .tooltip-inner {
583
+ width: 250px !important;
584
+ padding: 0px !important;
585
+ }
586
+
587
+ ::ng-deep.non-edit-time-tooltip.bs-tooltip-start {
588
+ padding: 0.4rem;
589
+
590
+ .tooltip-arrow {
591
+ right: 0;
592
+ top: 5px !important;
593
+ width: var(--bs-tooltip-arrow-height);
594
+ height: var(--bs-tooltip-arrow-width);
595
+
596
+ &::before {
597
+ border-left-color: white;
598
+ left: -1px;
599
+ border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5)
600
+ var(--bs-tooltip-arrow-height);
601
+ }
602
+ }
603
+ }
604
+
605
+ ::ng-deep .no-bottom-border {
606
+ p.sort-container {
607
+ border-bottom: none !important;
608
+ }
609
+ }
610
+
611
+ //Slider Filter Css
612
+
613
+ ::ng-deep .ngx-slider-pointer-min {
614
+ &::after {
615
+ display: none;
616
+ }
617
+ }
618
+
619
+ ::ng-deep .ngx-slider-pointer-max {
620
+ &::after {
621
+ display: none;
622
+ }
623
+ }
624
+
625
+ ::ng-deep .ngx-slider span.ngx-slider-pointer {
626
+ width: 12px;
627
+ height: 12px;
628
+ top: -5px;
629
+ background-color: #bdbdbd;
630
+ }
631
+
632
+ ::ng-deep .ngx-slider span.ngx-slider-bar {
633
+ height: 3px;
634
+ background: #ededed;
635
+ }
636
+
637
+ ::ng-deep .ngx-slider span.ngx-slider-selection {
638
+ background: #bdbdbd;
639
+ }
640
+
641
+ //Aligning the label to bottom
642
+ ::ng-deep .ngx-slider span.ngx-slider-bubble {
643
+ bottom: -22px;
644
+ font-size: 12px;
645
+ color: #333;
646
+ }
647
+
648
+ ::ng-deep .show-min.ngx-slider span.ngx-slider-model-value {
649
+ background: white;
650
+ box-shadow:
651
+ 0 6px 10px 0 rgba(0, 0, 0, 0.3),
652
+ 0 2px 2px 0 rgba(0, 0, 0, 0.2);
653
+ }
654
+
655
+ ::ng-deep .show-max.ngx-slider span.ngx-slider-model-high {
656
+ background: white;
657
+ box-shadow: none;
658
+ // left: auto !important;
659
+ }
660
+
661
+ ::ng-deep .ngx-slider span.ngx-slider-combined {
662
+ background: white;
663
+ box-shadow:
664
+ 0 6px 10px 0 rgba(0, 0, 0, 0.3),
665
+ 0 2px 2px 0 rgba(0, 0, 0, 0.2);
666
+ }
667
+
668
+ ::ng-deep .ngx-slider {
669
+ top: 10px !important;
670
+ margin: 5px 0 2px 0 !important;
671
+ }
672
+
673
+ ::ng-deep .ngx-slider-animate {
674
+ top: 0 !important;
675
+ }
676
+
677
+ .sidebar-slider {
678
+ margin-bottom: 35px !important;
679
+ margin-left: 5px;
680
+ margin-right: 5px;
681
+ }
682
+
683
+ .slider-placeholder {
684
+ height: 14px;
685
+ }
686
+ //end of slider css
687
+
688
+ //DatePicker css
689
+ ::ng-deep .filter-calendar {
690
+ select.form-select:focus {
691
+ border-color: rgb(194, 207, 214);
692
+ box-shadow: none;
693
+ }
694
+
695
+ select.form-select {
696
+ background-color: white;
697
+ }
698
+ }
699
+
700
+ .no-data-case {
701
+ padding-left: 0.4375rem !important;
702
+ font-size: var(--filter-checkbox-label-fs) !important;
703
+ margin-top: 10px !important;
704
+ cursor: pointer;
705
+ }
706
+
707
+ .custom-column-checkbox-checked,
708
+ .custom-column-checkbox-unchecked {
709
+ font-size: 0.875rem;
710
+ cursor: pointer;
711
+ }
712
+
713
+ .custom-column-checkbox-checked {
714
+ color: $primary-color;
715
+ }
716
+
717
+ .custom-column-checkbox-unchecked {
718
+ color: #2962ff;
719
+ }
720
+
721
+ .virtual-scroll-div {
722
+ position: absolute;
723
+ top: 0;
724
+ left: 0;
725
+ width: 100%;
726
+ height: 100%;
727
+ pointer-events: none;
728
+ }