@charlesgomes/leafcode-shared-lib-react 1.0.36 → 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 +5 -9
- package/dist/styles/table.css +13 -7
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -177,28 +177,24 @@ th {
|
|
|
177
177
|
vertical-align: middle;
|
|
178
178
|
position: relative;
|
|
179
179
|
}
|
|
180
|
-
.p-datatable .p-datatable-thead > tr > th.p-selection-column .p-checkbox-input {
|
|
181
|
-
text-align: center !important;
|
|
182
|
-
position: absolute;
|
|
183
|
-
left: 7px;
|
|
184
|
-
}
|
|
185
180
|
.p-selection-column .p-column-header-content {
|
|
186
181
|
position: relative;
|
|
187
182
|
top: 0;
|
|
188
183
|
right: -2px;
|
|
189
184
|
transform: translate(-40%, 0);
|
|
190
185
|
}
|
|
186
|
+
.p-checkbox.p-checkbox-input {
|
|
187
|
+
position: relative;
|
|
188
|
+
}
|
|
191
189
|
.p-checkbox-input {
|
|
192
190
|
position: absolute;
|
|
193
191
|
}
|
|
194
192
|
.p-selection-column .p-checkbox {
|
|
195
|
-
display: inline-flex;
|
|
196
193
|
vertical-align: middle;
|
|
197
|
-
justify-content: center;
|
|
198
|
-
align-items: center;
|
|
199
194
|
}
|
|
200
195
|
.p-column-header-content .p-checkbox {
|
|
201
|
-
position:
|
|
196
|
+
position: relative;
|
|
197
|
+
left: -2px;
|
|
202
198
|
}
|
|
203
199
|
.p-datatable .p-datatable-tbody > tr.p-highlight {
|
|
204
200
|
background: #fafbfc;
|
package/dist/styles/table.css
CHANGED
|
@@ -210,11 +210,12 @@ th {
|
|
|
210
210
|
position: relative;
|
|
211
211
|
}
|
|
212
212
|
|
|
213
|
-
.p-datatable .p-datatable-thead > tr > th.p-selection-column .p-checkbox-input {
|
|
213
|
+
/* .p-datatable .p-datatable-thead > tr > th.p-selection-column .p-checkbox-input {
|
|
214
214
|
text-align: center !important;
|
|
215
215
|
position: absolute;
|
|
216
|
-
|
|
217
|
-
|
|
216
|
+
right: -8px;
|
|
217
|
+
transform: translateX(-50%);
|
|
218
|
+
} */
|
|
218
219
|
|
|
219
220
|
.p-selection-column .p-column-header-content {
|
|
220
221
|
position: relative;
|
|
@@ -223,19 +224,24 @@ th {
|
|
|
223
224
|
transform: translate(-40%, 0);
|
|
224
225
|
}
|
|
225
226
|
|
|
227
|
+
.p-checkbox.p-checkbox-input {
|
|
228
|
+
position: relative;
|
|
229
|
+
}
|
|
230
|
+
|
|
226
231
|
.p-checkbox-input {
|
|
227
232
|
position: absolute;
|
|
228
233
|
}
|
|
229
234
|
|
|
230
235
|
.p-selection-column .p-checkbox {
|
|
231
|
-
display: inline-flex;
|
|
236
|
+
/* display: inline-flex; */
|
|
232
237
|
vertical-align: middle;
|
|
233
|
-
justify-content: center;
|
|
234
|
-
align-items: center;
|
|
238
|
+
/* justify-content: center;
|
|
239
|
+
align-items: center; */
|
|
235
240
|
}
|
|
236
241
|
|
|
237
242
|
.p-column-header-content .p-checkbox {
|
|
238
|
-
position:
|
|
243
|
+
position: relative;
|
|
244
|
+
left: -2px;
|
|
239
245
|
}
|
|
240
246
|
|
|
241
247
|
.p-datatable .p-datatable-tbody > tr.p-highlight {
|