@annalib/anna-core 35.8.8 → 35.12.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 +28 -28
- package/fesm2022/annalib-anna-core.mjs +49 -82
- package/fesm2022/annalib-anna-core.mjs.map +1 -1
- package/lib/anna-core-shared-lib/directives/show-ellipsis-text/show-ellipsis-text.directive.d.ts +1 -2
- package/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.d.ts +1 -15
- package/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.d.ts +2 -19
- package/package.json +1 -1
- package/src/lib/anna-common-scss/_animate.scss +27 -27
- package/src/lib/anna-common-scss/_application-spacing.scss +8 -8
- package/src/lib/anna-common-scss/_bootstrap-tooltip.scss +29 -29
- 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/_common-order-listing-table.scss +190 -190
- package/src/lib/anna-common-scss/_custom-anna-datepicker.scss +14 -14
- package/src/lib/anna-common-scss/_customDropdown.scss +126 -126
- package/src/lib/anna-common-scss/_dashboard-partials.scss +107 -107
- package/src/lib/anna-common-scss/_date-picker-form.scss +87 -87
- package/src/lib/anna-common-scss/_drag-and-drop.scss +22 -22
- package/src/lib/anna-common-scss/_easy-filter.scss +139 -139
- package/src/lib/anna-common-scss/_edit-filter-popup.scss +80 -80
- package/src/lib/anna-common-scss/_email-button.scss +89 -89
- package/src/lib/anna-common-scss/_filters.scss +728 -728
- 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 -220
- package/src/lib/anna-common-scss/_generic-tooltip-html.scss +69 -69
- package/src/lib/anna-common-scss/_gt-table.scss +583 -583
- 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 +68 -68
- 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 +37 -37
- package/src/lib/anna-common-scss/_scrollbar.scss +14 -14
- package/src/lib/anna-common-scss/_show-hide-total-row.scss +27 -27
- 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 +7 -7
- package/src/lib/anna-common-scss/third-party-lib/_angular-material-mat-radio.scss +26 -26
- package/src/lib/anna-common-scss/third-party-lib/_anna-mat-button-toggle-group-size-lg.scss +39 -39
- package/src/lib/anna-common-scss/third-party-lib/_mat-autocomplete.scss +31 -31
- package/src/lib/anna-common-scss/user-module-common-scss/_user-module.scss +65 -65
- package/src/lib/anna-common-scss/user-module-common-scss/_user-tag-status.scss +111 -111
|
@@ -1,220 +1,198 @@
|
|
|
1
|
-
@use "../anna-common-scss/fonts" as fonts;
|
|
2
|
-
@use "../anna-common-scss/colors" as colors;
|
|
3
|
-
|
|
4
|
-
@mixin no-data-to-display-gt($tableHeight, $rowHeight, $noDataMarginTop) {
|
|
5
|
-
.table-container {
|
|
6
|
-
height: calc($tableHeight) !important;
|
|
7
|
-
|
|
8
|
-
table {
|
|
9
|
-
border: solid 1px #d4d4d4;
|
|
10
|
-
|
|
11
|
-
thead {
|
|
12
|
-
th {
|
|
13
|
-
cursor: default;
|
|
14
|
-
box-shadow: none !important;
|
|
15
|
-
border: solid 1px #d4d4d4 !important;
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
tbody {
|
|
20
|
-
tr.no-border-tr:first-of-type {
|
|
21
|
-
height: $rowHeight !important;
|
|
22
|
-
|
|
23
|
-
td {
|
|
24
|
-
box-shadow: none !important;
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
tr:nth-child(n + 1) {
|
|
29
|
-
td {
|
|
30
|
-
box-shadow: none !important;
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.no-data {
|
|
38
|
-
margin-top: $noDataMarginTop !important;
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
@mixin resetFilterStyle() {
|
|
43
|
-
padding: 0;
|
|
44
|
-
border: none;
|
|
45
|
-
display: block;
|
|
46
|
-
text-align: right;
|
|
47
|
-
margin-left: auto;
|
|
48
|
-
width: fit-content;
|
|
49
|
-
background-color: transparent;
|
|
50
|
-
text-decoration: underline;
|
|
51
|
-
color: #268bff;
|
|
52
|
-
line-height: 1 !important;
|
|
53
|
-
font-size: var(--reset-all-filter-fs) !important;
|
|
54
|
-
letter-spacing: normal !important;
|
|
55
|
-
font-weight: normal !important;
|
|
56
|
-
|
|
57
|
-
&:hover:enabled {
|
|
58
|
-
color: #268bff;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
&:disabled {
|
|
62
|
-
color: #4a4a4a;
|
|
63
|
-
opacity: 0.5;
|
|
64
|
-
cursor: not-allowed;
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
@mixin tableDataLink() {
|
|
69
|
-
a {
|
|
70
|
-
cursor: pointer !important;
|
|
71
|
-
color: #268bff !important;
|
|
72
|
-
text-decoration: underline !important;
|
|
73
|
-
|
|
74
|
-
&.disabled {
|
|
75
|
-
color: #b7b6b6;
|
|
76
|
-
pointer-events: none;
|
|
77
|
-
text-decoration: none;
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
@mixin table-ellipses {
|
|
83
|
-
div {
|
|
84
|
-
text-overflow: ellipsis !important;
|
|
85
|
-
overflow: hidden !important;
|
|
86
|
-
white-space: nowrap !important;
|
|
87
|
-
// width: 99.5%;
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
@mixin table-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
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
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
}
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
@mixin
|
|
185
|
-
.
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
td:last-of-type {
|
|
201
|
-
box-shadow: inset -1px 0px 0px 0px #d4d4d4 !important;
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
@mixin overrideEmptyTrBorders($startIndex) {
|
|
207
|
-
tr.no-border-tr:first-of-type {
|
|
208
|
-
td:nth-of-type(#{$startIndex}) {
|
|
209
|
-
box-shadow: inset 1px 0px 0px 0px #d4d4d4 !important;
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
td:nth-child(n + #{$startIndex + 1}) {
|
|
213
|
-
box-shadow: none !important;
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
td:last-of-type {
|
|
217
|
-
box-shadow: inset -1px 0px 0px 0px #d4d4d4 !important;
|
|
218
|
-
}
|
|
219
|
-
}
|
|
220
|
-
}
|
|
1
|
+
@use "../anna-common-scss/fonts" as fonts;
|
|
2
|
+
@use "../anna-common-scss/colors" as colors;
|
|
3
|
+
|
|
4
|
+
@mixin no-data-to-display-gt($tableHeight, $rowHeight, $noDataMarginTop) {
|
|
5
|
+
.table-container {
|
|
6
|
+
height: calc($tableHeight) !important;
|
|
7
|
+
|
|
8
|
+
table {
|
|
9
|
+
border: solid 1px #d4d4d4;
|
|
10
|
+
|
|
11
|
+
thead {
|
|
12
|
+
th {
|
|
13
|
+
cursor: default;
|
|
14
|
+
box-shadow: none !important;
|
|
15
|
+
border: solid 1px #d4d4d4 !important;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
tbody {
|
|
20
|
+
tr.no-border-tr:first-of-type {
|
|
21
|
+
height: $rowHeight !important;
|
|
22
|
+
|
|
23
|
+
td {
|
|
24
|
+
box-shadow: none !important;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
tr:nth-child(n + 1) {
|
|
29
|
+
td {
|
|
30
|
+
box-shadow: none !important;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.no-data {
|
|
38
|
+
margin-top: $noDataMarginTop !important;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
@mixin resetFilterStyle() {
|
|
43
|
+
padding: 0;
|
|
44
|
+
border: none;
|
|
45
|
+
display: block;
|
|
46
|
+
text-align: right;
|
|
47
|
+
margin-left: auto;
|
|
48
|
+
width: fit-content;
|
|
49
|
+
background-color: transparent;
|
|
50
|
+
text-decoration: underline;
|
|
51
|
+
color: #268bff;
|
|
52
|
+
line-height: 1 !important;
|
|
53
|
+
font-size: var(--reset-all-filter-fs) !important;
|
|
54
|
+
letter-spacing: normal !important;
|
|
55
|
+
font-weight: normal !important;
|
|
56
|
+
|
|
57
|
+
&:hover:enabled {
|
|
58
|
+
color: #268bff;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
&:disabled {
|
|
62
|
+
color: #4a4a4a;
|
|
63
|
+
opacity: 0.5;
|
|
64
|
+
cursor: not-allowed;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
@mixin tableDataLink() {
|
|
69
|
+
a {
|
|
70
|
+
cursor: pointer !important;
|
|
71
|
+
color: #268bff !important;
|
|
72
|
+
text-decoration: underline !important;
|
|
73
|
+
|
|
74
|
+
&.disabled {
|
|
75
|
+
color: #b7b6b6;
|
|
76
|
+
pointer-events: none;
|
|
77
|
+
text-decoration: none;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
@mixin table-ellipses {
|
|
83
|
+
div {
|
|
84
|
+
text-overflow: ellipsis !important;
|
|
85
|
+
overflow: hidden !important;
|
|
86
|
+
white-space: nowrap !important;
|
|
87
|
+
// width: 99.5%;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
@mixin table-ellipses-only-on-text-span {
|
|
92
|
+
span {
|
|
93
|
+
text-overflow: ellipsis !important;
|
|
94
|
+
overflow: hidden !important;
|
|
95
|
+
white-space: nowrap !important;
|
|
96
|
+
display: inline-block !important;
|
|
97
|
+
max-width: 92%;
|
|
98
|
+
width: fit-content;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
@mixin genericTableHeaderShadow($columnNumber) {
|
|
103
|
+
.scroll-left-shadow-effect .header-row th:nth-of-type(#{$columnNumber}) {
|
|
104
|
+
border: none !important;
|
|
105
|
+
filter: drop-shadow(2px 0 2px colors.$lightGray-4);
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
@mixin genericTableTotalRowShadow($columnNumber) {
|
|
110
|
+
.scroll-left-shadow-effect .total-row td:nth-of-type(#{$columnNumber}) {
|
|
111
|
+
filter: drop-shadow(2px 0 2px colors.$lightGray-4);
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
@mixin genericTableTableDataShadow($columnNumber) {
|
|
116
|
+
.scroll-left-shadow-effect td:nth-of-type(#{$columnNumber}) {
|
|
117
|
+
filter: drop-shadow(2px 0 1px colors.$lightGray-4);
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
@mixin genericTableOverrideHeaderShadow($columnNumber) {
|
|
122
|
+
.scroll-left-shadow-effect .header-row th:nth-of-type(#{$columnNumber}) {
|
|
123
|
+
box-shadow: none !important;
|
|
124
|
+
border: none !important;
|
|
125
|
+
filter: none;
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
@mixin genericTableOverrideTableDataShadow($columnNumber) {
|
|
130
|
+
.scroll-left-shadow-effect td:nth-of-type(#{$columnNumber}) {
|
|
131
|
+
filter: none;
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
@mixin genericTableHeaderShadow($columnNumber) {
|
|
136
|
+
.scroll-left-shadow-effect .header-row th:nth-of-type(#{$columnNumber}) {
|
|
137
|
+
border: none !important;
|
|
138
|
+
filter: drop-shadow(2px 0 2px colors.$lightGray-4);
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
@mixin genericTableTotalRowShadow($columnNumber) {
|
|
143
|
+
.scroll-left-shadow-effect .total-row td:nth-of-type(#{$columnNumber}) {
|
|
144
|
+
filter: drop-shadow(2px 0 2px colors.$lightGray-4);
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
@mixin genericTableTableDataShadow($columnNumber) {
|
|
149
|
+
.scroll-left-shadow-effect td:nth-of-type(#{$columnNumber}) {
|
|
150
|
+
filter: drop-shadow(2px 0 1px colors.$lightGray-4);
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
@mixin genericTableOverrideHeaderShadow($columnNumber) {
|
|
155
|
+
.scroll-left-shadow-effect .header-row th:nth-of-type(#{$columnNumber}) {
|
|
156
|
+
box-shadow: none !important;
|
|
157
|
+
border: none !important;
|
|
158
|
+
filter: none;
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
@mixin genericTableOverrideTableDataShadow($columnNumber) {
|
|
163
|
+
.scroll-left-shadow-effect td:nth-of-type(#{$columnNumber}) {
|
|
164
|
+
filter: none;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
@mixin overrideEmptyTrBorders($startIndex) {
|
|
169
|
+
tr.no-border-tr:first-of-type {
|
|
170
|
+
td:nth-of-type(#{$startIndex}) {
|
|
171
|
+
box-shadow: inset 1px 0px 0px 0px #d4d4d4 !important;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
td:nth-child(n + #{$startIndex + 1}) {
|
|
175
|
+
box-shadow: none !important;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
td:last-of-type {
|
|
179
|
+
box-shadow: inset -1px 0px 0px 0px #d4d4d4 !important;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
@mixin overrideEmptyTrBorders($startIndex) {
|
|
185
|
+
tr.no-border-tr:first-of-type {
|
|
186
|
+
td:nth-of-type(#{$startIndex}) {
|
|
187
|
+
box-shadow: inset 1px 0px 0px 0px #d4d4d4 !important;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
td:nth-child(n + #{$startIndex + 1}) {
|
|
191
|
+
box-shadow: none !important;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
td:last-of-type {
|
|
195
|
+
box-shadow: inset -1px 0px 0px 0px #d4d4d4 !important;
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
}
|
|
@@ -1,69 +1,69 @@
|
|
|
1
|
-
@use "../anna-common-scss/fonts" as *;
|
|
2
|
-
@use "../anna-common-scss/colors" as *;
|
|
3
|
-
|
|
4
|
-
::ng-deep {
|
|
5
|
-
.gt-icon-innerHtml-tooltip .tooltip-inner {
|
|
6
|
-
max-width: 600px;
|
|
7
|
-
width: min-content;
|
|
8
|
-
&>div{
|
|
9
|
-
width: max-content;
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.generic-innerHtml-table-heading {
|
|
14
|
-
margin-bottom: 2px;
|
|
15
|
-
@include fonts(Roboto, $fs-11, normal, 700, normal, normal, 0.3px);
|
|
16
|
-
color: #4a4a4a;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.generic-innerHtml-table-container {
|
|
20
|
-
max-height: 8.75rem;
|
|
21
|
-
width: min-content;
|
|
22
|
-
overflow: auto;
|
|
23
|
-
table {
|
|
24
|
-
table-layout: fixed;
|
|
25
|
-
width: 100%;
|
|
26
|
-
thead {
|
|
27
|
-
tr {
|
|
28
|
-
th {
|
|
29
|
-
background: #e9e9e9;
|
|
30
|
-
height: 22px;
|
|
31
|
-
padding: 3px 8px;
|
|
32
|
-
line-height: normal;
|
|
33
|
-
position: sticky;
|
|
34
|
-
top: 0;
|
|
35
|
-
cursor: default;
|
|
36
|
-
@include fonts(Roboto, $fs-11, normal, 700, normal, normal, 0.3px);
|
|
37
|
-
color: $charcoal;
|
|
38
|
-
margin-bottom: 0;
|
|
39
|
-
box-shadow: inset 1px -1px #d4d4d4, inset 0px 1px #d4d4d4;
|
|
40
|
-
&:last-of-type {
|
|
41
|
-
box-shadow: inset 1px -1px #d4d4d4, inset -1px 1px #d4d4d4 !important;
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
tbody {
|
|
47
|
-
tr {
|
|
48
|
-
td {
|
|
49
|
-
padding: 3px 8px;
|
|
50
|
-
width: 100%;
|
|
51
|
-
color: #000;
|
|
52
|
-
@include fonts(Roboto, $fs-12, normal, normal, normal, normal, 0px);
|
|
53
|
-
box-shadow: inset 1px -1px #d4d4d4;
|
|
54
|
-
&:last-of-type {
|
|
55
|
-
box-shadow: inset 1px -1px #d4d4d4, inset -1px 0px #d4d4d4;
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
&:first-of-type td {
|
|
59
|
-
border-top: none;
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
&::-webkit-scrollbar-track {
|
|
66
|
-
margin-top: 22px !important;
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
}
|
|
1
|
+
@use "../anna-common-scss/fonts" as *;
|
|
2
|
+
@use "../anna-common-scss/colors" as *;
|
|
3
|
+
|
|
4
|
+
::ng-deep {
|
|
5
|
+
.gt-icon-innerHtml-tooltip .tooltip-inner {
|
|
6
|
+
max-width: 600px;
|
|
7
|
+
width: min-content;
|
|
8
|
+
&>div{
|
|
9
|
+
width: max-content;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.generic-innerHtml-table-heading {
|
|
14
|
+
margin-bottom: 2px;
|
|
15
|
+
@include fonts(Roboto, $fs-11, normal, 700, normal, normal, 0.3px);
|
|
16
|
+
color: #4a4a4a;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.generic-innerHtml-table-container {
|
|
20
|
+
max-height: 8.75rem;
|
|
21
|
+
width: min-content;
|
|
22
|
+
overflow: auto;
|
|
23
|
+
table {
|
|
24
|
+
table-layout: fixed;
|
|
25
|
+
width: 100%;
|
|
26
|
+
thead {
|
|
27
|
+
tr {
|
|
28
|
+
th {
|
|
29
|
+
background: #e9e9e9;
|
|
30
|
+
height: 22px;
|
|
31
|
+
padding: 3px 8px;
|
|
32
|
+
line-height: normal;
|
|
33
|
+
position: sticky;
|
|
34
|
+
top: 0;
|
|
35
|
+
cursor: default;
|
|
36
|
+
@include fonts(Roboto, $fs-11, normal, 700, normal, normal, 0.3px);
|
|
37
|
+
color: $charcoal;
|
|
38
|
+
margin-bottom: 0;
|
|
39
|
+
box-shadow: inset 1px -1px #d4d4d4, inset 0px 1px #d4d4d4;
|
|
40
|
+
&:last-of-type {
|
|
41
|
+
box-shadow: inset 1px -1px #d4d4d4, inset -1px 1px #d4d4d4 !important;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
tbody {
|
|
47
|
+
tr {
|
|
48
|
+
td {
|
|
49
|
+
padding: 3px 8px;
|
|
50
|
+
width: 100%;
|
|
51
|
+
color: #000;
|
|
52
|
+
@include fonts(Roboto, $fs-12, normal, normal, normal, normal, 0px);
|
|
53
|
+
box-shadow: inset 1px -1px #d4d4d4;
|
|
54
|
+
&:last-of-type {
|
|
55
|
+
box-shadow: inset 1px -1px #d4d4d4, inset -1px 0px #d4d4d4;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
&:first-of-type td {
|
|
59
|
+
border-top: none;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
&::-webkit-scrollbar-track {
|
|
66
|
+
margin-top: 22px !important;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|