@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.
- package/README.md +7 -3
- package/{esm2020 → esm2022}/annalib-anna-core.mjs +4 -4
- package/esm2022/lib/anna-core-shared-lib/components/anna-buyer-approval-icon-template/anna-buyer-approval-icon-template.component.mjs +14 -0
- package/esm2022/lib/anna-core-shared-lib/components/anna-deleted-order-icon-template/anna-deleted-order-icon-template.component.mjs +13 -0
- package/esm2022/lib/anna-core-shared-lib/components/anna-est-icon-template/anna-est-icon-template.component.mjs +11 -0
- package/esm2022/lib/anna-core-shared-lib/components/anna-icon-column/anna-icon-column.component.mjs +43 -0
- package/esm2022/lib/anna-core-shared-lib/components/anna-live-icon-template/anna-live-icon-template.component.mjs +14 -0
- package/esm2022/lib/anna-core-shared-lib/components/anna-no-data/anna-no-data.component.mjs +22 -0
- package/esm2022/lib/anna-core-shared-lib/components/anna-notify-icon-template/anna-notify-icon-template.component.mjs +13 -0
- package/esm2022/lib/anna-core-shared-lib/components/anna-pay-for-performance-icon-template/anna-pay-for-performance-icon-template.component.mjs +22 -0
- package/esm2022/lib/anna-core-shared-lib/components/anna-rejected-icon-template/anna-rejected-icon-template.component.mjs +14 -0
- package/esm2022/lib/anna-core-shared-lib/constants/shared.constant.mjs +47 -0
- package/esm2022/lib/anna-core-shared-lib/directives/digits-only/digits-only.directive.mjs +273 -0
- package/esm2022/lib/anna-core-shared-lib/directives/fixed-rows-popup-table/fixed-rows-popup-table.directive.mjs +46 -0
- package/esm2022/lib/anna-core-shared-lib/directives/show-ellipsis-text/show-ellipsis-text.directive.mjs +39 -0
- package/esm2022/lib/anna-core-shared-lib/models/anna-generic-data-type.model.mjs +2 -0
- package/esm2022/lib/anna-core-shared-lib/models/anna-global-dropdown-config.model.mjs +2 -0
- package/esm2022/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.mjs +22 -0
- package/esm2022/lib/anna-core-shared-lib/models/anna-sort.model.mjs +7 -0
- package/{esm2020 → esm2022}/lib/anna-core-shared-lib/models/anna-tooltip.model.mjs +30 -30
- package/esm2022/lib/anna-core-shared-lib/pipes/annaConvertArrayToCommaSeperatedValue.pipe.mjs +39 -0
- package/esm2022/lib/anna-core-shared-lib/pipes/annaConvertZeroOrNullOrUndefined.pipe.mjs +27 -0
- package/esm2022/lib/anna-core-shared-lib/pipes/annaDateFormatter.pipe.mjs +22 -0
- package/esm2022/lib/anna-core-shared-lib/pipes/annaFilterSearchedText.pipe.mjs +55 -0
- package/esm2022/lib/anna-core-shared-lib/pipes/annaReplaceChar.pipe.mjs +26 -0
- package/esm2022/lib/anna-core-shared-lib/pipes/annaTypeOfData.pipe.mjs +17 -0
- package/esm2022/lib/anna-core-shared-lib/services/anna-date-time-format.service.mjs +219 -0
- package/esm2022/lib/anna-core-shared-lib/services/anna-filter.service.mjs +1272 -0
- package/esm2022/lib/anna-core-shared-lib/services/anna-generic-table.service.mjs +151 -0
- package/esm2022/lib/anna-core-shared-lib/services/anna-global-config.service.mjs +135 -0
- package/esm2022/lib/anna-core-shared-lib/services/anna-number-format.service.mjs +53 -0
- package/esm2022/lib/anna-core-shared-lib/services/anna-persisting-filter.service.mjs +65 -0
- package/esm2022/lib/anna-core-shared-lib/services/anna-sort.service.mjs +178 -0
- package/esm2022/lib/anna-core.module.mjs +226 -0
- package/esm2022/lib/anna-dropdown-lib/components/anna-calendar-filter/anna-calendar-filter.component.mjs +160 -0
- package/esm2022/lib/anna-dropdown-lib/components/anna-week-calendar-filter/anna-week-calendar-filter.component.mjs +371 -0
- package/esm2022/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-checkbox-filter/anna-column-checkbox-filter.component.mjs +252 -0
- 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
- package/esm2022/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-slider-filter/anna-column-slider-filter.component.mjs +316 -0
- package/esm2022/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-time-filter/anna-column-time-filter.component.mjs +298 -0
- package/esm2022/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +864 -0
- package/esm2022/lib/anna-generic-table-lib/components/anna-sort/anna-sort.component.mjs +64 -0
- package/esm2022/lib/anna-generic-table-lib/components/anna-table-virtual-scroll-viewport/anna-table-virtual-scroll-viewport.component.mjs +352 -0
- 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
- package/{esm2020 → esm2022}/lib/anna-generic-table-lib/directives/anna-fixed-row-size-table-virtual-scroll-strategy/index.mjs +2 -2
- package/esm2022/lib/anna-generic-table-lib/directives/anna-virtual-table/anna-virtual-table.directive.mjs +180 -0
- package/{esm2020 → esm2022}/lib/anna-generic-table-lib/directives/anna-virtual-table/index.mjs +2 -2
- package/esm2022/public-api.mjs +58 -0
- package/fesm2022/annalib-anna-core.mjs +6124 -0
- package/fesm2022/annalib-anna-core.mjs.map +1 -0
- package/index.d.ts +5 -5
- package/lib/anna-core-shared-lib/components/anna-buyer-approval-icon-template/anna-buyer-approval-icon-template.component.d.ts +8 -8
- package/lib/anna-core-shared-lib/components/anna-deleted-order-icon-template/anna-deleted-order-icon-template.component.d.ts +8 -8
- package/lib/anna-core-shared-lib/components/anna-est-icon-template/anna-est-icon-template.component.d.ts +5 -0
- package/lib/anna-core-shared-lib/components/anna-icon-column/anna-icon-column.component.d.ts +17 -17
- package/lib/anna-core-shared-lib/components/anna-live-icon-template/anna-live-icon-template.component.d.ts +8 -8
- package/lib/anna-core-shared-lib/components/anna-no-data/anna-no-data.component.d.ts +11 -11
- package/lib/anna-core-shared-lib/components/anna-notify-icon-template/anna-notify-icon-template.component.d.ts +8 -8
- package/lib/anna-core-shared-lib/components/anna-pay-for-performance-icon-template/anna-pay-for-performance-icon-template.component.d.ts +12 -12
- package/lib/anna-core-shared-lib/components/anna-rejected-icon-template/anna-rejected-icon-template.component.d.ts +8 -8
- package/lib/anna-core-shared-lib/constants/shared.constant.d.ts +45 -41
- package/lib/anna-core-shared-lib/directives/digits-only/digits-only.directive.d.ts +34 -34
- package/lib/anna-core-shared-lib/directives/fixed-rows-popup-table/fixed-rows-popup-table.directive.d.ts +16 -16
- package/lib/anna-core-shared-lib/directives/show-ellipsis-text/show-ellipsis-text.directive.d.ts +10 -10
- package/lib/anna-core-shared-lib/models/anna-generic-data-type.model.d.ts +16 -16
- package/lib/anna-core-shared-lib/models/anna-global-dropdown-config.model.d.ts +98 -97
- package/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.d.ts +128 -118
- package/lib/anna-core-shared-lib/models/anna-sort.model.d.ts +11 -11
- package/lib/anna-core-shared-lib/models/anna-tooltip.model.d.ts +25 -25
- package/lib/anna-core-shared-lib/pipes/annaConvertArrayToCommaSeperatedValue.pipe.d.ts +9 -0
- package/lib/anna-core-shared-lib/pipes/annaConvertZeroOrNullOrUndefined.pipe.d.ts +9 -9
- package/lib/anna-core-shared-lib/pipes/annaDateFormatter.pipe.d.ts +8 -8
- package/lib/anna-core-shared-lib/pipes/annaFilterSearchedText.pipe.d.ts +9 -9
- package/lib/anna-core-shared-lib/pipes/annaReplaceChar.pipe.d.ts +9 -9
- package/lib/anna-core-shared-lib/pipes/annaTypeOfData.pipe.d.ts +7 -7
- package/lib/anna-core-shared-lib/services/anna-date-time-format.service.d.ts +33 -28
- package/lib/anna-core-shared-lib/services/anna-filter.service.d.ts +154 -154
- package/lib/anna-core-shared-lib/services/anna-generic-table.service.d.ts +27 -27
- package/lib/anna-core-shared-lib/services/anna-global-config.service.d.ts +21 -21
- package/lib/anna-core-shared-lib/services/anna-number-format.service.d.ts +8 -8
- package/lib/anna-core-shared-lib/services/anna-persisting-filter.service.d.ts +9 -9
- package/lib/anna-core-shared-lib/services/anna-sort.service.d.ts +18 -18
- package/lib/anna-core.module.d.ts +45 -43
- package/lib/anna-dropdown-lib/components/anna-calendar-filter/anna-calendar-filter.component.d.ts +45 -45
- package/lib/anna-dropdown-lib/components/anna-week-calendar-filter/anna-week-calendar-filter.component.d.ts +70 -70
- package/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-checkbox-filter/anna-column-checkbox-filter.component.d.ts +60 -60
- 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
- package/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-slider-filter/anna-column-slider-filter.component.d.ts +65 -65
- package/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-time-filter/anna-column-time-filter.component.d.ts +83 -83
- package/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.d.ts +175 -174
- package/lib/anna-generic-table-lib/components/anna-sort/anna-sort.component.d.ts +17 -17
- package/lib/anna-generic-table-lib/components/anna-table-virtual-scroll-viewport/anna-table-virtual-scroll-viewport.component.d.ts +141 -141
- 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
- package/lib/anna-generic-table-lib/directives/anna-fixed-row-size-table-virtual-scroll-strategy/index.d.ts +1 -1
- package/lib/anna-generic-table-lib/directives/anna-virtual-table/anna-virtual-table.directive.d.ts +45 -45
- package/lib/anna-generic-table-lib/directives/anna-virtual-table/index.d.ts +1 -1
- package/package.json +13 -18
- package/public-api.d.ts +42 -41
- package/src/lib/anna-common-scss/_animate.scss +11 -11
- package/src/lib/anna-common-scss/_application-spacing.scss +5 -4
- package/src/lib/anna-common-scss/_bootstrap-tooltip.scss +25 -23
- package/src/lib/anna-common-scss/_button.scss +1 -1
- package/src/lib/anna-common-scss/_colors.scss +1 -1
- package/src/lib/anna-common-scss/_common-order-listing-table.scss +146 -135
- package/src/lib/anna-common-scss/_custom-anna-datepicker.scss +1 -1
- package/src/lib/anna-common-scss/_customDropdown.scss +68 -67
- package/src/lib/anna-common-scss/_dashboard-partials.scss +66 -64
- package/src/lib/anna-common-scss/_date-picker-form.scss +40 -40
- package/src/lib/anna-common-scss/_easy-filter.scss +107 -127
- package/src/lib/anna-common-scss/_edit-filter-popup.scss +17 -18
- package/src/lib/anna-common-scss/_filters.scss +470 -471
- package/src/lib/anna-common-scss/_font.scss +7 -8
- package/src/lib/anna-common-scss/_fonts.scss +7 -7
- package/src/lib/anna-common-scss/_generic-modal.scss +62 -58
- package/src/lib/anna-common-scss/_generic-table-common.scss +140 -145
- package/src/lib/anna-common-scss/_gt-table.scss +173 -182
- package/src/lib/anna-common-scss/_icons.scss +3 -0
- package/src/lib/anna-common-scss/_legend.scss +5 -5
- package/src/lib/anna-common-scss/_mat-button-toggle.scss +11 -11
- package/src/lib/anna-common-scss/_mat-menu.scss +14 -14
- package/src/lib/anna-common-scss/_mixins.scss +134 -135
- package/src/lib/anna-common-scss/_modal.scss +22 -22
- package/src/lib/anna-common-scss/_popup-filter-toggle-button.scss +36 -0
- package/src/lib/anna-common-scss/_scrollbar.scss +7 -7
- package/src/lib/anna-common-scss/_sort.scss +20 -20
- package/src/lib/anna-common-scss/_toggle.scss +54 -52
- package/src/lib/anna-common-scss/style.scss +1 -1
- package/src/lib/anna-common-scss/third-party-lib/_angular-material-mat-radio.scss +21 -17
- package/src/lib/anna-common-scss/third-party-lib/_anna-mat-button-toggle-group-size-lg.scss +34 -0
- package/src/lib/anna-common-scss/third-party-lib/_mat-autocomplete.scss +26 -23
- package/esm2020/lib/anna-core-shared-lib/components/anna-buyer-approval-icon-template/anna-buyer-approval-icon-template.component.mjs +0 -15
- package/esm2020/lib/anna-core-shared-lib/components/anna-deleted-order-icon-template/anna-deleted-order-icon-template.component.mjs +0 -14
- package/esm2020/lib/anna-core-shared-lib/components/anna-icon-column/anna-icon-column.component.mjs +0 -36
- package/esm2020/lib/anna-core-shared-lib/components/anna-live-icon-template/anna-live-icon-template.component.mjs +0 -15
- package/esm2020/lib/anna-core-shared-lib/components/anna-no-data/anna-no-data.component.mjs +0 -22
- package/esm2020/lib/anna-core-shared-lib/components/anna-notify-icon-template/anna-notify-icon-template.component.mjs +0 -14
- package/esm2020/lib/anna-core-shared-lib/components/anna-pay-for-performance-icon-template/anna-pay-for-performance-icon-template.component.mjs +0 -23
- package/esm2020/lib/anna-core-shared-lib/components/anna-rejected-icon-template/anna-rejected-icon-template.component.mjs +0 -15
- package/esm2020/lib/anna-core-shared-lib/constants/shared.constant.mjs +0 -43
- package/esm2020/lib/anna-core-shared-lib/directives/digits-only/digits-only.directive.mjs +0 -284
- package/esm2020/lib/anna-core-shared-lib/directives/fixed-rows-popup-table/fixed-rows-popup-table.directive.mjs +0 -43
- package/esm2020/lib/anna-core-shared-lib/directives/show-ellipsis-text/show-ellipsis-text.directive.mjs +0 -36
- package/esm2020/lib/anna-core-shared-lib/models/anna-generic-data-type.model.mjs +0 -2
- package/esm2020/lib/anna-core-shared-lib/models/anna-global-dropdown-config.model.mjs +0 -2
- package/esm2020/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.mjs +0 -11
- package/esm2020/lib/anna-core-shared-lib/models/anna-sort.model.mjs +0 -7
- package/esm2020/lib/anna-core-shared-lib/pipes/annaConvertZeroOrNullOrUndefined.pipe.mjs +0 -26
- package/esm2020/lib/anna-core-shared-lib/pipes/annaDateFormatter.pipe.mjs +0 -22
- package/esm2020/lib/anna-core-shared-lib/pipes/annaFilterSearchedText.pipe.mjs +0 -53
- package/esm2020/lib/anna-core-shared-lib/pipes/annaReplaceChar.pipe.mjs +0 -25
- package/esm2020/lib/anna-core-shared-lib/pipes/annaTypeOfData.pipe.mjs +0 -16
- package/esm2020/lib/anna-core-shared-lib/services/anna-date-time-format.service.mjs +0 -208
- package/esm2020/lib/anna-core-shared-lib/services/anna-filter.service.mjs +0 -1145
- package/esm2020/lib/anna-core-shared-lib/services/anna-generic-table.service.mjs +0 -151
- package/esm2020/lib/anna-core-shared-lib/services/anna-global-config.service.mjs +0 -132
- package/esm2020/lib/anna-core-shared-lib/services/anna-number-format.service.mjs +0 -53
- package/esm2020/lib/anna-core-shared-lib/services/anna-persisting-filter.service.mjs +0 -66
- package/esm2020/lib/anna-core-shared-lib/services/anna-sort.service.mjs +0 -175
- package/esm2020/lib/anna-core.module.mjs +0 -213
- package/esm2020/lib/anna-dropdown-lib/components/anna-calendar-filter/anna-calendar-filter.component.mjs +0 -151
- package/esm2020/lib/anna-dropdown-lib/components/anna-week-calendar-filter/anna-week-calendar-filter.component.mjs +0 -364
- package/esm2020/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-checkbox-filter/anna-column-checkbox-filter.component.mjs +0 -237
- 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
- package/esm2020/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-slider-filter/anna-column-slider-filter.component.mjs +0 -306
- package/esm2020/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-time-filter/anna-column-time-filter.component.mjs +0 -291
- package/esm2020/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +0 -781
- package/esm2020/lib/anna-generic-table-lib/components/anna-sort/anna-sort.component.mjs +0 -64
- package/esm2020/lib/anna-generic-table-lib/components/anna-table-virtual-scroll-viewport/anna-table-virtual-scroll-viewport.component.mjs +0 -357
- 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
- package/esm2020/lib/anna-generic-table-lib/directives/anna-virtual-table/anna-virtual-table.directive.mjs +0 -178
- package/esm2020/public-api.mjs +0 -57
- package/fesm2015/annalib-anna-core.mjs +0 -5782
- package/fesm2015/annalib-anna-core.mjs.map +0 -1
- package/fesm2020/annalib-anna-core.mjs +0 -5774
- 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
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
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
|
-
|
|
20
|
+
box-shadow: unset !important;
|
|
19
21
|
}
|
|
20
22
|
|
|
21
23
|
::ng-deep .available {
|
|
22
|
-
|
|
24
|
+
color: #999;
|
|
23
25
|
}
|
|
24
26
|
|
|
25
27
|
::ng-deep .bs-tooltip-bottom .arrow::before {
|
|
26
|
-
|
|
28
|
+
border-bottom-color: #fff !important;
|
|
27
29
|
}
|
|
28
30
|
::ng-deep .bs-tooltip-left .arrow::before {
|
|
29
|
-
|
|
31
|
+
border-left-color: #fff !important;
|
|
30
32
|
}
|
|
31
33
|
|
|
32
34
|
::ng-deep .tooltip.show {
|
|
33
|
-
|
|
35
|
+
opacity: 1;
|
|
34
36
|
}
|
|
35
37
|
|
|
36
38
|
.input {
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
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
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
49
|
+
color: #000000;
|
|
50
|
+
font-weight: 700;
|
|
51
|
+
margin-left: 5px;
|
|
52
|
+
margin-right: 5px;
|
|
51
53
|
}
|
|
52
54
|
|
|
53
55
|
span.data {
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
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
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
64
|
+
font-size: 14px;
|
|
65
|
+
cursor: pointer;
|
|
66
|
+
position: relative;
|
|
67
|
+
top: -1px;
|
|
66
68
|
}
|
|
67
69
|
|
|
68
70
|
span.mdi-filter.active {
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
71
|
+
color: black;
|
|
72
|
+
opacity: 1 !important;
|
|
73
|
+
pointer-events: all !important;
|
|
72
74
|
}
|
|
73
75
|
|
|
74
76
|
p {
|
|
75
|
-
|
|
76
|
-
|
|
77
|
+
margin-bottom: 0;
|
|
78
|
+
line-height: initial;
|
|
77
79
|
}
|
|
78
80
|
|
|
79
81
|
span.mdi-filter {
|
|
80
|
-
|
|
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
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
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
|
-
|
|
108
|
-
|
|
109
|
-
|
|
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
|
-
|
|
114
|
+
outline: none;
|
|
114
115
|
}
|
|
115
116
|
input::placeholder {
|
|
116
|
-
|
|
117
|
+
color: $lightGray-6;
|
|
117
118
|
}
|
|
118
119
|
|
|
119
120
|
.cancel-btn {
|
|
120
|
-
|
|
121
|
-
|
|
121
|
+
background: $lavenderBlue;
|
|
122
|
+
color: $primary-color;
|
|
122
123
|
}
|
|
123
124
|
|
|
124
125
|
.apply-btn {
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
126
|
+
background: $primary-color;
|
|
127
|
+
color: white;
|
|
128
|
+
margin-left: $fs-5;
|
|
128
129
|
}
|
|
129
130
|
|
|
130
131
|
div.radio-container {
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
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
|
-
|
|
174
|
-
|
|
175
|
-
|
|
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
|
-
|
|
180
|
+
.checkbox-filter-buttons-container {
|
|
181
|
+
padding: 0 8px !important;
|
|
181
182
|
}
|
|
182
183
|
|
|
183
184
|
.buttons-container {
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
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
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
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
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
206
|
+
button.disabled {
|
|
207
|
+
background: $gray74;
|
|
208
|
+
opacity: 0.5;
|
|
209
|
+
color: $charcoal;
|
|
210
|
+
}
|
|
210
211
|
}
|
|
211
212
|
|
|
212
213
|
.button {
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
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
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
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
|
-
|
|
242
|
-
|
|
243
|
-
|
|
242
|
+
margin: 0 4px 0 0;
|
|
243
|
+
font-size: $fs-18;
|
|
244
|
+
color: $lightGray-7;
|
|
244
245
|
}
|
|
245
246
|
|
|
246
247
|
.filter-icon {
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
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
|
-
|
|
257
|
-
|
|
258
|
-
|
|
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
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
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
|
-
|
|
270
|
+
color: $primary-color;
|
|
270
271
|
}
|
|
271
272
|
|
|
272
273
|
.tooltip-data-container {
|
|
273
|
-
|
|
274
|
-
|
|
274
|
+
overflow-y: scroll;
|
|
275
|
+
max-height: 8rem;
|
|
275
276
|
}
|
|
276
277
|
|
|
277
278
|
.searchbar {
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
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
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
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
|
-
|
|
302
|
+
color: $primary-color;
|
|
302
303
|
}
|
|
303
304
|
|
|
304
305
|
cdk-virtual-scroll-viewport.dropdown-data-container {
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
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
|
-
|
|
326
|
+
width: $fs-3;
|
|
326
327
|
}
|
|
327
328
|
|
|
328
329
|
cdk-virtual-scroll-viewport.dropdown-data-container::-webkit-scrollbar-thumb {
|
|
329
|
-
|
|
330
|
-
|
|
330
|
+
color: lightgray;
|
|
331
|
+
background: lightgray;
|
|
331
332
|
}
|
|
332
333
|
|
|
333
334
|
section.min-maxContainer {
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
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
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
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
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
365
|
+
input.numberInput:focus {
|
|
366
|
+
box-shadow: none;
|
|
367
|
+
border-color: #c2cfd6;
|
|
368
|
+
}
|
|
368
369
|
|
|
369
|
-
|
|
370
|
-
|
|
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: -
|
|
394
|
-
|
|
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
|
-
|
|
405
|
+
cursor: pointer;
|
|
405
406
|
}
|
|
406
407
|
|
|
407
408
|
.time-label-container {
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
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
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
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
|
-
|
|
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
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
|
493
|
-
|
|
485
|
+
span.mdi-filter-variant {
|
|
486
|
+
color: #cbcbcb;
|
|
487
|
+
cursor: pointer;
|
|
488
|
+
font-size: 0.875rem;
|
|
494
489
|
}
|
|
495
490
|
|
|
496
|
-
|
|
497
|
-
|
|
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
|
|
509
|
-
|
|
510
|
-
|
|
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
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
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
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
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
|
-
|
|
538
|
-
|
|
534
|
+
input.slider-text::-webkit-inner-spin-button {
|
|
535
|
+
-webkit-appearance: none;
|
|
536
|
+
margin: 0;
|
|
539
537
|
}
|
|
540
538
|
|
|
541
|
-
input.slider-text{
|
|
542
|
-
|
|
539
|
+
input.slider-text {
|
|
540
|
+
-moz-appearance: textfield;
|
|
543
541
|
}
|
|
544
542
|
|
|
545
|
-
input.slider-text.red-border{
|
|
546
|
-
|
|
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
|
-
|
|
551
|
-
|
|
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
|
-
|
|
552
|
+
i.mdi-close {
|
|
553
|
+
cursor: pointer;
|
|
556
554
|
}
|
|
557
555
|
|
|
558
|
-
i.mdi-close.disable-close-icon{
|
|
559
|
-
|
|
560
|
-
|
|
556
|
+
i.mdi-close.disable-close-icon {
|
|
557
|
+
pointer-events: none;
|
|
558
|
+
cursor: not-allowed;
|
|
561
559
|
}
|
|
562
560
|
|
|
563
|
-
input.error-border{
|
|
564
|
-
|
|
561
|
+
input.error-border {
|
|
562
|
+
border: 1px solid #f44336 !important;
|
|
565
563
|
}
|
|
566
564
|
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
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
|
-
|
|
575
|
-
|
|
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
|
-
|
|
580
|
-
|
|
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
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
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
|
-
|
|
603
|
-
|
|
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
|
-
|
|
611
|
-
|
|
612
|
-
|
|
607
|
+
&::after {
|
|
608
|
+
display: none;
|
|
609
|
+
}
|
|
613
610
|
}
|
|
614
611
|
|
|
615
612
|
::ng-deep .ngx-slider-pointer-max {
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
613
|
+
&::after {
|
|
614
|
+
display: none;
|
|
615
|
+
}
|
|
619
616
|
}
|
|
620
617
|
|
|
621
618
|
::ng-deep .ngx-slider span.ngx-slider-pointer {
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
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
|
-
|
|
630
|
-
|
|
626
|
+
height: 3px;
|
|
627
|
+
background: #ededed;
|
|
631
628
|
}
|
|
632
629
|
|
|
633
630
|
::ng-deep .ngx-slider span.ngx-slider-selection {
|
|
634
|
-
|
|
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
|
-
|
|
640
|
-
|
|
641
|
-
|
|
636
|
+
bottom: -22px;
|
|
637
|
+
font-size: 12px;
|
|
638
|
+
color: #333;
|
|
642
639
|
}
|
|
643
640
|
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
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
|
-
|
|
651
|
-
|
|
652
|
-
|
|
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
|
-
|
|
657
|
-
|
|
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
|
-
|
|
662
|
-
|
|
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
|
-
|
|
666
|
+
::ng-deep .ngx-slider-animate {
|
|
667
|
+
top: 0 !important;
|
|
667
668
|
}
|
|
668
669
|
|
|
669
|
-
.sidebar-slider{
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
670
|
+
.sidebar-slider {
|
|
671
|
+
margin-bottom: 35px !important;
|
|
672
|
+
margin-left: 5px;
|
|
673
|
+
margin-right: 5px;
|
|
673
674
|
}
|
|
674
675
|
|
|
675
|
-
.slider-placeholder{
|
|
676
|
-
|
|
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
|
-
|
|
684
|
-
|
|
685
|
-
|
|
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
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
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
|
-
|
|
704
|
-
|
|
702
|
+
font-size: 0.875rem;
|
|
703
|
+
cursor: pointer;
|
|
705
704
|
}
|
|
706
705
|
|
|
707
706
|
.custom-column-checkbox-checked {
|
|
708
|
-
|
|
707
|
+
color: $primary-color;
|
|
709
708
|
}
|
|
710
709
|
|
|
711
710
|
.custom-column-checkbox-unchecked {
|
|
712
|
-
|
|
713
|
-
}
|
|
711
|
+
color: $charcoal;
|
|
712
|
+
}
|