@charlesgomes/leafcode-shared-lib-react 1.0.37 → 1.0.38
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/dist/index.css +6 -2
- package/dist/styles/table.css +7 -2
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -183,14 +183,18 @@ th {
|
|
|
183
183
|
right: -2px;
|
|
184
184
|
transform: translate(-40%, 0);
|
|
185
185
|
}
|
|
186
|
-
.p-checkbox-input {
|
|
186
|
+
.p-checkbox.p-checkbox-input {
|
|
187
187
|
position: relative;
|
|
188
188
|
}
|
|
189
|
+
.p-checkbox-input {
|
|
190
|
+
position: absolute;
|
|
191
|
+
}
|
|
189
192
|
.p-selection-column .p-checkbox {
|
|
190
193
|
vertical-align: middle;
|
|
191
194
|
}
|
|
192
195
|
.p-column-header-content .p-checkbox {
|
|
193
|
-
position:
|
|
196
|
+
position: relative;
|
|
197
|
+
left: -2px;
|
|
194
198
|
}
|
|
195
199
|
.p-datatable .p-datatable-tbody > tr.p-highlight {
|
|
196
200
|
background: #fafbfc;
|
package/dist/styles/table.css
CHANGED
|
@@ -224,10 +224,14 @@ th {
|
|
|
224
224
|
transform: translate(-40%, 0);
|
|
225
225
|
}
|
|
226
226
|
|
|
227
|
-
.p-checkbox-input {
|
|
227
|
+
.p-checkbox.p-checkbox-input {
|
|
228
228
|
position: relative;
|
|
229
229
|
}
|
|
230
230
|
|
|
231
|
+
.p-checkbox-input {
|
|
232
|
+
position: absolute;
|
|
233
|
+
}
|
|
234
|
+
|
|
231
235
|
.p-selection-column .p-checkbox {
|
|
232
236
|
/* display: inline-flex; */
|
|
233
237
|
vertical-align: middle;
|
|
@@ -236,7 +240,8 @@ th {
|
|
|
236
240
|
}
|
|
237
241
|
|
|
238
242
|
.p-column-header-content .p-checkbox {
|
|
239
|
-
position:
|
|
243
|
+
position: relative;
|
|
244
|
+
left: -2px;
|
|
240
245
|
}
|
|
241
246
|
|
|
242
247
|
.p-datatable .p-datatable-tbody > tr.p-highlight {
|