@annalib/anna-core 23.0.5 → 23.0.6

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