@annalib/anna-core 25.4.21 → 25.4.22
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 +28 -28
- package/esm2022/lib/anna-core-shared-lib/components/anna-buyer-approval-icon-template/anna-buyer-approval-icon-template.component.mjs +3 -3
- package/esm2022/lib/anna-core-shared-lib/components/anna-deleted-order-icon-template/anna-deleted-order-icon-template.component.mjs +3 -3
- package/esm2022/lib/anna-core-shared-lib/components/anna-est-icon-template/anna-est-icon-template.component.mjs +3 -3
- package/esm2022/lib/anna-core-shared-lib/components/anna-live-icon-template/anna-live-icon-template.component.mjs +3 -3
- package/esm2022/lib/anna-core-shared-lib/components/anna-no-data/anna-no-data.component.mjs +3 -3
- package/esm2022/lib/anna-core-shared-lib/components/anna-notify-icon-template/anna-notify-icon-template.component.mjs +3 -3
- package/esm2022/lib/anna-core-shared-lib/components/anna-pay-for-performance-icon-template/anna-pay-for-performance-icon-template.component.mjs +3 -3
- package/esm2022/lib/anna-core-shared-lib/components/anna-rejected-icon-template/anna-rejected-icon-template.component.mjs +3 -3
- package/esm2022/lib/anna-core-shared-lib/models/anna-generic-data-type.model.mjs +1 -1
- package/esm2022/lib/anna-core-shared-lib/services/anna-filter.service.mjs +2 -2
- package/esm2022/lib/anna-dropdown-lib/components/anna-calendar-filter/anna-calendar-filter.component.mjs +3 -3
- package/esm2022/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-checkbox-filter/anna-column-checkbox-filter.component.mjs +3 -3
- package/esm2022/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-date-range-filter/anna-column-date-range-filter.component.mjs +3 -3
- package/esm2022/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-slider-filter/anna-column-slider-filter.component.mjs +3 -3
- package/esm2022/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-time-filter/anna-column-time-filter.component.mjs +3 -3
- package/esm2022/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +5 -7
- package/esm2022/lib/anna-generic-table-lib/components/anna-sort/anna-sort.component.mjs +3 -3
- package/fesm2022/annalib-anna-core.mjs +33 -35
- package/fesm2022/annalib-anna-core.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/anna-common-scss/_animate.scss +27 -27
- package/src/lib/anna-common-scss/_bootstrap-tooltip.scss +1 -1
- package/src/lib/anna-common-scss/_button.scss +18 -18
- package/src/lib/anna-common-scss/_colors.scss +107 -107
- package/src/lib/anna-common-scss/_custom-anna-datepicker.scss +14 -14
- package/src/lib/anna-common-scss/_customDropdown.scss +124 -123
- package/src/lib/anna-common-scss/_dashboard-partials.scss +106 -106
- package/src/lib/anna-common-scss/_date-picker-form.scss +87 -87
- package/src/lib/anna-common-scss/_easy-filter.scss +6 -6
- package/src/lib/anna-common-scss/_edit-filter-popup.scss +76 -70
- package/src/lib/anna-common-scss/_filters.scss +13 -10
- package/src/lib/anna-common-scss/_font.scss +9 -9
- package/src/lib/anna-common-scss/_fonts.scss +86 -86
- package/src/lib/anna-common-scss/_generic-modal.scss +63 -63
- package/src/lib/anna-common-scss/_generic-table-common.scss +198 -198
- package/src/lib/anna-common-scss/_gt-table.scss +326 -190
- package/src/lib/anna-common-scss/_icons.scss +3 -3
- package/src/lib/anna-common-scss/_legend.scss +11 -11
- package/src/lib/anna-common-scss/_mat-button-toggle.scss +2 -1
- package/src/lib/anna-common-scss/_mat-menu.scss +17 -17
- package/src/lib/anna-common-scss/_mixins.scss +187 -187
- package/src/lib/anna-common-scss/_modal.scss +37 -37
- package/src/lib/anna-common-scss/_popup-filter-toggle-button.scss +4 -3
- package/src/lib/anna-common-scss/_scrollbar.scss +14 -14
- package/src/lib/anna-common-scss/_show-hide-total-row.scss +2 -2
- package/src/lib/anna-common-scss/_sort.scss +30 -30
- package/src/lib/anna-common-scss/_toggle.scss +86 -86
- package/src/lib/anna-common-scss/style.scss +1 -1
- package/src/lib/anna-common-scss/third-party-lib/_angular-material-mat-radio.scss +26 -25
- package/src/lib/anna-common-scss/third-party-lib/_anna-mat-button-toggle-group-size-lg.scss +34 -34
- package/src/lib/anna-common-scss/third-party-lib/_mat-autocomplete.scss +31 -31
|
@@ -1,106 +1,106 @@
|
|
|
1
|
-
.dashboard-heading {
|
|
2
|
-
color: #268bff;
|
|
3
|
-
font-size: 1rem;
|
|
4
|
-
font-weight: 500;
|
|
5
|
-
letter-spacing: 2.5px;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
@mixin user-card($bgColor) {
|
|
9
|
-
background-color: $bgColor;
|
|
10
|
-
box-shadow:
|
|
11
|
-
0 2px 2px 0 rgba(0, 0, 0, 0.24),
|
|
12
|
-
0 0 2px 0 rgba(0, 0, 0, 0.12);
|
|
13
|
-
cursor: default;
|
|
14
|
-
transition: 150ms;
|
|
15
|
-
position: relative;
|
|
16
|
-
border-radius: 0.25rem;
|
|
17
|
-
padding: 1.5rem;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
//orderCard issue 2
|
|
21
|
-
// .user-card:hover {
|
|
22
|
-
// box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.3), 0 2px 2px 0 rgba(0, 0, 0, 0.2);
|
|
23
|
-
// top: -2px;
|
|
24
|
-
// }
|
|
25
|
-
|
|
26
|
-
@mixin view_link {
|
|
27
|
-
float: right;
|
|
28
|
-
color: #268bff;
|
|
29
|
-
cursor: pointer;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
@mixin info-box {
|
|
33
|
-
background-color: #c7e1ff;
|
|
34
|
-
border-radius: $fs-4;
|
|
35
|
-
padding: 0.1875rem 0.5rem 0 0.5rem;
|
|
36
|
-
@include fonts(Roboto, 0.9375rem, normal, 500, normal, 1.25, 0.088rem);
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.noData {
|
|
40
|
-
background-color: lightgrey;
|
|
41
|
-
padding: 0.5em;
|
|
42
|
-
width: 40%;
|
|
43
|
-
text-align: center;
|
|
44
|
-
margin: 12.5em auto;
|
|
45
|
-
border-radius: 0.2em;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
@mixin svg-parent-card($cardHeight, $cardBgColor) {
|
|
49
|
-
max-width: 100%;
|
|
50
|
-
height: $cardHeight;
|
|
51
|
-
width: 100%;
|
|
52
|
-
background-color: $cardBgColor;
|
|
53
|
-
border: none;
|
|
54
|
-
outline: none;
|
|
55
|
-
padding-bottom: 0;
|
|
56
|
-
margin-bottom: 0;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
@mixin svg-content-placeholder($backgroundGradient, $clipPath) {
|
|
60
|
-
animation: linear 1s placeHolderShimmer infinite;
|
|
61
|
-
background: $backgroundGradient;
|
|
62
|
-
background-size: 800px 104px;
|
|
63
|
-
|
|
64
|
-
width: 100%;
|
|
65
|
-
height: 100%;
|
|
66
|
-
-webkit-clip-path: url($clipPath);
|
|
67
|
-
clip-path: url($clipPath);
|
|
68
|
-
// Safari render fix
|
|
69
|
-
transform: translateZ(0);
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
@keyframes placeHolderShimmer {
|
|
73
|
-
0% {
|
|
74
|
-
background-position: -468px 0;
|
|
75
|
-
}
|
|
76
|
-
100% {
|
|
77
|
-
background-position: 468px 0;
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
:host::ng-deep.btn-secondary {
|
|
82
|
-
box-shadow: none;
|
|
83
|
-
border: 1px solid lightgray;
|
|
84
|
-
}
|
|
85
|
-
:host ::ng-deep .ui-select-match-text {
|
|
86
|
-
padding-top: 0;
|
|
87
|
-
display: inline-block;
|
|
88
|
-
width: 100%;
|
|
89
|
-
white-space: nowrap;
|
|
90
|
-
overflow: hidden;
|
|
91
|
-
text-overflow: ellipsis;
|
|
92
|
-
}
|
|
93
|
-
@mixin material-icons-and-expand-icon {
|
|
94
|
-
color: #268bff;
|
|
95
|
-
position: absolute;
|
|
96
|
-
float: right;
|
|
97
|
-
cursor: pointer;
|
|
98
|
-
pointer-events: none;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
@mixin dropdownContainer {
|
|
102
|
-
position: relative;
|
|
103
|
-
margin: 0 0.5625rem 0 0;
|
|
104
|
-
display: flex;
|
|
105
|
-
flex-direction: column;
|
|
106
|
-
}
|
|
1
|
+
.dashboard-heading {
|
|
2
|
+
color: #268bff;
|
|
3
|
+
font-size: 1rem;
|
|
4
|
+
font-weight: 500;
|
|
5
|
+
letter-spacing: 2.5px;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
@mixin user-card($bgColor) {
|
|
9
|
+
background-color: $bgColor;
|
|
10
|
+
box-shadow:
|
|
11
|
+
0 2px 2px 0 rgba(0, 0, 0, 0.24),
|
|
12
|
+
0 0 2px 0 rgba(0, 0, 0, 0.12);
|
|
13
|
+
cursor: default;
|
|
14
|
+
transition: 150ms;
|
|
15
|
+
position: relative;
|
|
16
|
+
border-radius: 0.25rem;
|
|
17
|
+
padding: 1.5rem;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
//orderCard issue 2
|
|
21
|
+
// .user-card:hover {
|
|
22
|
+
// box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.3), 0 2px 2px 0 rgba(0, 0, 0, 0.2);
|
|
23
|
+
// top: -2px;
|
|
24
|
+
// }
|
|
25
|
+
|
|
26
|
+
@mixin view_link {
|
|
27
|
+
float: right;
|
|
28
|
+
color: #268bff;
|
|
29
|
+
cursor: pointer;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
@mixin info-box {
|
|
33
|
+
background-color: #c7e1ff;
|
|
34
|
+
border-radius: $fs-4;
|
|
35
|
+
padding: 0.1875rem 0.5rem 0 0.5rem;
|
|
36
|
+
@include fonts(Roboto, 0.9375rem, normal, 500, normal, 1.25, 0.088rem);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.noData {
|
|
40
|
+
background-color: lightgrey;
|
|
41
|
+
padding: 0.5em;
|
|
42
|
+
width: 40%;
|
|
43
|
+
text-align: center;
|
|
44
|
+
margin: 12.5em auto;
|
|
45
|
+
border-radius: 0.2em;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
@mixin svg-parent-card($cardHeight, $cardBgColor) {
|
|
49
|
+
max-width: 100%;
|
|
50
|
+
height: $cardHeight;
|
|
51
|
+
width: 100%;
|
|
52
|
+
background-color: $cardBgColor;
|
|
53
|
+
border: none;
|
|
54
|
+
outline: none;
|
|
55
|
+
padding-bottom: 0;
|
|
56
|
+
margin-bottom: 0;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
@mixin svg-content-placeholder($backgroundGradient, $clipPath) {
|
|
60
|
+
animation: linear 1s placeHolderShimmer infinite;
|
|
61
|
+
background: $backgroundGradient;
|
|
62
|
+
background-size: 800px 104px;
|
|
63
|
+
|
|
64
|
+
width: 100%;
|
|
65
|
+
height: 100%;
|
|
66
|
+
-webkit-clip-path: url($clipPath);
|
|
67
|
+
clip-path: url($clipPath);
|
|
68
|
+
// Safari render fix
|
|
69
|
+
transform: translateZ(0);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
@keyframes placeHolderShimmer {
|
|
73
|
+
0% {
|
|
74
|
+
background-position: -468px 0;
|
|
75
|
+
}
|
|
76
|
+
100% {
|
|
77
|
+
background-position: 468px 0;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
:host::ng-deep.btn-secondary {
|
|
82
|
+
box-shadow: none;
|
|
83
|
+
border: 1px solid lightgray;
|
|
84
|
+
}
|
|
85
|
+
:host ::ng-deep .ui-select-match-text {
|
|
86
|
+
padding-top: 0;
|
|
87
|
+
display: inline-block;
|
|
88
|
+
width: 100%;
|
|
89
|
+
white-space: nowrap;
|
|
90
|
+
overflow: hidden;
|
|
91
|
+
text-overflow: ellipsis;
|
|
92
|
+
}
|
|
93
|
+
@mixin material-icons-and-expand-icon {
|
|
94
|
+
color: #268bff;
|
|
95
|
+
position: absolute;
|
|
96
|
+
float: right;
|
|
97
|
+
cursor: pointer;
|
|
98
|
+
pointer-events: none;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
@mixin dropdownContainer {
|
|
102
|
+
position: relative;
|
|
103
|
+
margin: 0 0.5625rem 0 0;
|
|
104
|
+
display: flex;
|
|
105
|
+
flex-direction: column;
|
|
106
|
+
}
|
|
@@ -1,87 +1,87 @@
|
|
|
1
|
-
@import "./fonts", "./colors";
|
|
2
|
-
|
|
3
|
-
.input-group-append {
|
|
4
|
-
margin: auto;
|
|
5
|
-
width: 25px;
|
|
6
|
-
background-color: #d8d8d8;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.input-group {
|
|
10
|
-
background-color: #fff;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.input-group > .form-control {
|
|
14
|
-
width: 150px;
|
|
15
|
-
font-size: 12px;
|
|
16
|
-
border: none;
|
|
17
|
-
background-color: white;
|
|
18
|
-
border-right: 1px solid #d4d4d4;
|
|
19
|
-
cursor: pointer;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.datepicker-form-group {
|
|
23
|
-
border-radius: 2px;
|
|
24
|
-
border: 1px solid #d6d6d6;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
:host ::ng-deep.ngb-dp-arrow.right {
|
|
28
|
-
width: unset !important;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
::ng-deep .ngb-dp-day.disabled {
|
|
32
|
-
opacity: 0.5;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.form-control {
|
|
36
|
-
padding: 7px;
|
|
37
|
-
color: #000;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
:host ::ng-deep .bg-primary {
|
|
41
|
-
background-color: #8bac2a !important;
|
|
42
|
-
&:focus {
|
|
43
|
-
outline: none;
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.form-control {
|
|
48
|
-
&:focus {
|
|
49
|
-
outline: none;
|
|
50
|
-
box-shadow: none;
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
textarea:focus,
|
|
55
|
-
input:focus {
|
|
56
|
-
outline: none;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
::ng-deep .custom-select {
|
|
60
|
-
cursor: pointer;
|
|
61
|
-
&:focus {
|
|
62
|
-
border-color: unset;
|
|
63
|
-
outline: 0;
|
|
64
|
-
box-shadow: unset;
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
.icon-width {
|
|
69
|
-
font-size: 16px;
|
|
70
|
-
cursor: pointer;
|
|
71
|
-
width: 25px;
|
|
72
|
-
display: flex;
|
|
73
|
-
justify-content: center;
|
|
74
|
-
background-color: #fff;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
input.form-control:disabled {
|
|
78
|
-
background-color: #fff !important;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
::ng-deep app-single-select-dropdown {
|
|
82
|
-
width: 19.5rem !important;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
.form-control {
|
|
86
|
-
background-color: transparent !important;
|
|
87
|
-
}
|
|
1
|
+
@import "./fonts", "./colors";
|
|
2
|
+
|
|
3
|
+
.input-group-append {
|
|
4
|
+
margin: auto;
|
|
5
|
+
width: 25px;
|
|
6
|
+
background-color: #d8d8d8;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.input-group {
|
|
10
|
+
background-color: #fff;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.input-group > .form-control {
|
|
14
|
+
width: 150px;
|
|
15
|
+
font-size: 12px;
|
|
16
|
+
border: none;
|
|
17
|
+
background-color: white;
|
|
18
|
+
border-right: 1px solid #d4d4d4;
|
|
19
|
+
cursor: pointer;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.datepicker-form-group {
|
|
23
|
+
border-radius: 2px;
|
|
24
|
+
border: 1px solid #d6d6d6;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
:host ::ng-deep.ngb-dp-arrow.right {
|
|
28
|
+
width: unset !important;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
::ng-deep .ngb-dp-day.disabled {
|
|
32
|
+
opacity: 0.5;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.form-control {
|
|
36
|
+
padding: 7px;
|
|
37
|
+
color: #000;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
:host ::ng-deep .bg-primary {
|
|
41
|
+
background-color: #8bac2a !important;
|
|
42
|
+
&:focus {
|
|
43
|
+
outline: none;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.form-control {
|
|
48
|
+
&:focus {
|
|
49
|
+
outline: none;
|
|
50
|
+
box-shadow: none;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
textarea:focus,
|
|
55
|
+
input:focus {
|
|
56
|
+
outline: none;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
::ng-deep .custom-select {
|
|
60
|
+
cursor: pointer;
|
|
61
|
+
&:focus {
|
|
62
|
+
border-color: unset;
|
|
63
|
+
outline: 0;
|
|
64
|
+
box-shadow: unset;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.icon-width {
|
|
69
|
+
font-size: 16px;
|
|
70
|
+
cursor: pointer;
|
|
71
|
+
width: 25px;
|
|
72
|
+
display: flex;
|
|
73
|
+
justify-content: center;
|
|
74
|
+
background-color: #fff;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
input.form-control:disabled {
|
|
78
|
+
background-color: #fff !important;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
::ng-deep app-single-select-dropdown {
|
|
82
|
+
width: 19.5rem !important;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.form-control {
|
|
86
|
+
background-color: transparent !important;
|
|
87
|
+
}
|
|
@@ -13,9 +13,9 @@ $intelli-filter-default-map: (
|
|
|
13
13
|
|
|
14
14
|
@mixin intelli-filter-default($padding: 5px 8px) {
|
|
15
15
|
button.intelli-filter {
|
|
16
|
-
@include fonts(Roboto,
|
|
16
|
+
@include fonts(Roboto, var(--easy-filter-text-fs), normal, 500, normal, normal, 0.6px);
|
|
17
17
|
border-radius: 0.75rem;
|
|
18
|
-
height: 1.
|
|
18
|
+
height: 1.25rem;
|
|
19
19
|
margin-right: 8px;
|
|
20
20
|
display: inline-flex;
|
|
21
21
|
align-items: center;
|
|
@@ -69,7 +69,7 @@ $only-enabled-default-map: (
|
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
$intelli-filter-icon-default-map: (
|
|
72
|
-
"icon-font-size":
|
|
72
|
+
"icon-font-size": var(--easy-filter-icon-fs),
|
|
73
73
|
"icon-margin-right": 4px,
|
|
74
74
|
"active-icon-color": white,
|
|
75
75
|
);
|
|
@@ -125,14 +125,14 @@ $intelli-filter-icon-default-map: (
|
|
|
125
125
|
}
|
|
126
126
|
|
|
127
127
|
.filter-label {
|
|
128
|
-
@include fonts(Roboto,
|
|
128
|
+
@include fonts(Roboto, var(--easy-filter-label-fs), normal, normal, normal, normal, normal);
|
|
129
129
|
color: $charcoal;
|
|
130
|
-
margin-bottom:
|
|
130
|
+
margin-bottom: 0px;
|
|
131
131
|
}
|
|
132
132
|
|
|
133
133
|
.filter-divider {
|
|
134
134
|
width: 0.5px;
|
|
135
135
|
margin-right: 8px;
|
|
136
|
-
height:
|
|
136
|
+
height: 20px;
|
|
137
137
|
background: #111;
|
|
138
138
|
}
|
|
@@ -1,70 +1,76 @@
|
|
|
1
|
-
@use "./colors" as c;
|
|
2
|
-
@use "./fonts" as f;
|
|
3
|
-
|
|
4
|
-
$gap-between-headers-col: 1.5625rem !default;
|
|
5
|
-
|
|
6
|
-
.selected-filters-container {
|
|
7
|
-
border-radius: 2px;
|
|
8
|
-
border: 1px solid c.$primary-color;
|
|
9
|
-
padding: 0.625rem 0.5rem 0.625rem 1.5rem;
|
|
10
|
-
display: flex;
|
|
11
|
-
flex-wrap: nowrap;
|
|
12
|
-
justify-content: space-between;
|
|
13
|
-
height:
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.filter-view {
|
|
17
|
-
display: flex;
|
|
18
|
-
gap: $gap-between-headers-col;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.header {
|
|
22
|
-
margin-bottom: 0;
|
|
23
|
-
color: c.$darkCharcoal;
|
|
24
|
-
@include f.fonts(Roboto,
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.
|
|
28
|
-
margin-bottom: 0;
|
|
29
|
-
color: c.$
|
|
30
|
-
@include f.fonts(Roboto,
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
.
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
|
|
1
|
+
@use "./colors" as c;
|
|
2
|
+
@use "./fonts" as f;
|
|
3
|
+
|
|
4
|
+
$gap-between-headers-col: 1.5625rem !default;
|
|
5
|
+
|
|
6
|
+
.selected-filters-container {
|
|
7
|
+
border-radius: 2px;
|
|
8
|
+
border: 1px solid c.$primary-color;
|
|
9
|
+
padding: 0.625rem 0.5rem 0.625rem 1.5rem;
|
|
10
|
+
display: flex;
|
|
11
|
+
flex-wrap: nowrap;
|
|
12
|
+
justify-content: space-between;
|
|
13
|
+
height: 46px;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.filter-view {
|
|
17
|
+
display: flex;
|
|
18
|
+
gap: $gap-between-headers-col;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.header {
|
|
22
|
+
margin-bottom: 0;
|
|
23
|
+
color: c.$darkCharcoal;
|
|
24
|
+
@include f.fonts(Roboto, var(--primary-filter-label-fs), normal, normal, normal, normal, normal);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.popup-dropdown-label {
|
|
28
|
+
margin-bottom: 0;
|
|
29
|
+
color: c.$darkCharcoal;
|
|
30
|
+
@include f.fonts(Roboto, var(--dropdown-label-fs), normal, normal, normal, normal, normal);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.selected-value {
|
|
34
|
+
margin-bottom: 0;
|
|
35
|
+
color: c.$grey;
|
|
36
|
+
@include f.fonts(Roboto, var(--primary-filter-value-fs), normal, bold, normal, normal, normal);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
@mixin filter-popup-modal-header() {
|
|
40
|
+
.modal-header {
|
|
41
|
+
padding: 0.5rem 0.5rem 0.25rem 1.5rem;
|
|
42
|
+
|
|
43
|
+
.modal-title {
|
|
44
|
+
color: white;
|
|
45
|
+
margin-top: auto;
|
|
46
|
+
margin-bottom: 0;
|
|
47
|
+
@include f.fonts(Roboto, 1.125rem, normal, normal, normal, normal, normal);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
i {
|
|
51
|
+
color: white;
|
|
52
|
+
font-size: 1.5rem;
|
|
53
|
+
&:hover,
|
|
54
|
+
&:focus {
|
|
55
|
+
opacity: 1 !important;
|
|
56
|
+
color: white;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
@mixin filter-popup-modal-body() {
|
|
63
|
+
.modal-body {
|
|
64
|
+
padding: 1.5rem;
|
|
65
|
+
|
|
66
|
+
.popup-filter {
|
|
67
|
+
margin-bottom: 1rem;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.btn-group {
|
|
71
|
+
display: flex;
|
|
72
|
+
justify-content: space-between;
|
|
73
|
+
padding-top: 0.5rem;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
@@ -240,7 +240,7 @@ div.radio-container {
|
|
|
240
240
|
|
|
241
241
|
.search-icon {
|
|
242
242
|
margin: 0 4px 0 0;
|
|
243
|
-
font-size:
|
|
243
|
+
font-size: var(--filter-search-icon-fs);
|
|
244
244
|
color: $lightGray-7;
|
|
245
245
|
}
|
|
246
246
|
|
|
@@ -255,13 +255,13 @@ div.radio-container {
|
|
|
255
255
|
|
|
256
256
|
.data {
|
|
257
257
|
margin: 0 13px 0px 8px;
|
|
258
|
-
@include fonts(Roboto,
|
|
258
|
+
@include fonts(Roboto, var(--filter-checkbox-label-fs), normal, normal, normal, 1.86, "");
|
|
259
259
|
color: $charcoal;
|
|
260
260
|
}
|
|
261
261
|
|
|
262
262
|
.search-input {
|
|
263
263
|
margin: 1px 0 1px 4px;
|
|
264
|
-
@include fonts(Roboto,
|
|
264
|
+
@include fonts(Roboto, var(--filter-search-fs), normal, normal, normal, normal, normal);
|
|
265
265
|
color: $lightGray-6;
|
|
266
266
|
width: calc(100% - 38px);
|
|
267
267
|
margin-left: 2px;
|
|
@@ -342,7 +342,7 @@ section.min-maxContainer {
|
|
|
342
342
|
width: 100%;
|
|
343
343
|
input {
|
|
344
344
|
width: 30%;
|
|
345
|
-
height:
|
|
345
|
+
height: 1.5rem;
|
|
346
346
|
border: 1px solid lightgray;
|
|
347
347
|
color: gray;
|
|
348
348
|
}
|
|
@@ -353,6 +353,7 @@ section.min-maxContainer {
|
|
|
353
353
|
position: relative;
|
|
354
354
|
top: $fs-5;
|
|
355
355
|
color: $lightDimGray;
|
|
356
|
+
font-size: var(--page-message-content-fs);
|
|
356
357
|
}
|
|
357
358
|
}
|
|
358
359
|
|
|
@@ -382,12 +383,12 @@ section.min-maxContainer {
|
|
|
382
383
|
margin-top: $fs-6;
|
|
383
384
|
width: 9px;
|
|
384
385
|
height: 18px;
|
|
385
|
-
margin-right:
|
|
386
|
+
margin-right: 0.875rem;
|
|
386
387
|
i {
|
|
387
388
|
color: black;
|
|
388
389
|
cursor: pointer;
|
|
389
390
|
max-height: 9px;
|
|
390
|
-
font-size:
|
|
391
|
+
font-size: 20px;
|
|
391
392
|
width: 10px;
|
|
392
393
|
&:before {
|
|
393
394
|
width: 0;
|
|
@@ -417,6 +418,7 @@ section.min-maxContainer {
|
|
|
417
418
|
margin-top: 0.125rem;
|
|
418
419
|
margin-left: $fs-12;
|
|
419
420
|
font-weight: 700;
|
|
421
|
+
font-size: var(--dropdown-label-fs);
|
|
420
422
|
}
|
|
421
423
|
}
|
|
422
424
|
|
|
@@ -433,7 +435,7 @@ section.min-maxContainer {
|
|
|
433
435
|
width: 94%;
|
|
434
436
|
text-align: center;
|
|
435
437
|
border: none;
|
|
436
|
-
font-size:
|
|
438
|
+
font-size: var(--filter-clear-select-btn-fs);
|
|
437
439
|
background: none;
|
|
438
440
|
text-decoration: underline;
|
|
439
441
|
color: $primary-color;
|
|
@@ -496,7 +498,7 @@ span.mdi-filter-variant.active {
|
|
|
496
498
|
}
|
|
497
499
|
|
|
498
500
|
p.filter-tab {
|
|
499
|
-
@include fonts(Roboto,
|
|
501
|
+
@include fonts(Roboto, var(--filter-tab-fs), normal, normal, normal, 1.29, normal);
|
|
500
502
|
color: #1b88ff;
|
|
501
503
|
border-radius: 5px;
|
|
502
504
|
background-color: #f4f4f4;
|
|
@@ -505,6 +507,7 @@ p.filter-tab {
|
|
|
505
507
|
overflow: hidden;
|
|
506
508
|
text-align: center;
|
|
507
509
|
text-overflow: ellipsis;
|
|
510
|
+
padding-block: 3px;
|
|
508
511
|
}
|
|
509
512
|
|
|
510
513
|
p.filter-tab.active {
|
|
@@ -515,7 +518,7 @@ p.filter-tab.active {
|
|
|
515
518
|
button.filter-text-btn {
|
|
516
519
|
background: white;
|
|
517
520
|
text-decoration: underline;
|
|
518
|
-
@include fonts(Roboto,
|
|
521
|
+
@include fonts(Roboto, var(--filter-clear-select-btn-fs), normal, normal, normal, normal, normal);
|
|
519
522
|
border: none;
|
|
520
523
|
color: #268bff;
|
|
521
524
|
&:disabled {
|
|
@@ -695,7 +698,7 @@ input.error-border {
|
|
|
695
698
|
|
|
696
699
|
.no-data-case {
|
|
697
700
|
padding-left: 0.4375rem !important;
|
|
698
|
-
font-size:
|
|
701
|
+
font-size: var(--filter-checkbox-label-fs) !important;
|
|
699
702
|
margin-top: 10px !important;
|
|
700
703
|
cursor: pointer;
|
|
701
704
|
}
|