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