ngx-st-tables 18.0.39 → 18.0.41
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/assets/base-table.scss +6 -6
- package/esm2022/lib/components/material-table/material-table.component.mjs +3 -3
- package/esm2022/lib/components/select-table/select-table.component.mjs +2 -2
- package/fesm2022/ngx-st-tables.mjs +4 -4
- package/fesm2022/ngx-st-tables.mjs.map +1 -1
- package/package.json +1 -1
package/assets/base-table.scss
CHANGED
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
padding-left: 12px;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
-
td.mat-mdc-cell.mat-column-actions-row-selecting {
|
|
29
|
+
td.mat-mdc-cell.mat-column-actions-row-selecting, th.mat-mdc-header-cell.mat-column-actions-row-selecting {
|
|
30
30
|
padding-left: 0;
|
|
31
31
|
}
|
|
32
32
|
|
|
@@ -162,13 +162,13 @@
|
|
|
162
162
|
|
|
163
163
|
&.no-hover {
|
|
164
164
|
tbody {
|
|
165
|
-
tr {
|
|
165
|
+
& > tr {
|
|
166
166
|
cursor: default;
|
|
167
167
|
|
|
168
168
|
&.active {
|
|
169
169
|
background-color: transparent !important;
|
|
170
170
|
|
|
171
|
-
td {
|
|
171
|
+
& > td {
|
|
172
172
|
border-bottom-color: #0000001f !important;
|
|
173
173
|
}
|
|
174
174
|
}
|
|
@@ -176,7 +176,7 @@
|
|
|
176
176
|
&:hover {
|
|
177
177
|
background-color: transparent !important;
|
|
178
178
|
|
|
179
|
-
td {
|
|
179
|
+
& > td {
|
|
180
180
|
border-bottom-color: #0000001f !important;
|
|
181
181
|
}
|
|
182
182
|
}
|
|
@@ -246,7 +246,7 @@ table.st-material-table {
|
|
|
246
246
|
}
|
|
247
247
|
}
|
|
248
248
|
tbody {
|
|
249
|
-
tr {
|
|
249
|
+
& > tr {
|
|
250
250
|
&:hover {
|
|
251
251
|
background-color: rgba(255, 255, 255, 0.03) !important;
|
|
252
252
|
}
|
|
@@ -254,7 +254,7 @@ table.st-material-table {
|
|
|
254
254
|
&.active {
|
|
255
255
|
background-color: rgba(17, 33, 17, 0.3) !important;
|
|
256
256
|
|
|
257
|
-
td {
|
|
257
|
+
& > td {
|
|
258
258
|
border-bottom-color: rgba(17, 33, 17, 0.3) !important;
|
|
259
259
|
}
|
|
260
260
|
}
|