@charlesgomes/leafcode-shared-lib-react 1.0.36 → 1.0.37
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 +1 -9
- package/dist/styles/table.css +8 -7
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -177,11 +177,6 @@ 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;
|
|
@@ -189,13 +184,10 @@ th {
|
|
|
189
184
|
transform: translate(-40%, 0);
|
|
190
185
|
}
|
|
191
186
|
.p-checkbox-input {
|
|
192
|
-
position:
|
|
187
|
+
position: relative;
|
|
193
188
|
}
|
|
194
189
|
.p-selection-column .p-checkbox {
|
|
195
|
-
display: inline-flex;
|
|
196
190
|
vertical-align: middle;
|
|
197
|
-
justify-content: center;
|
|
198
|
-
align-items: center;
|
|
199
191
|
}
|
|
200
192
|
.p-column-header-content .p-checkbox {
|
|
201
193
|
position: static;
|
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;
|
|
@@ -224,14 +225,14 @@ th {
|
|
|
224
225
|
}
|
|
225
226
|
|
|
226
227
|
.p-checkbox-input {
|
|
227
|
-
position:
|
|
228
|
+
position: relative;
|
|
228
229
|
}
|
|
229
230
|
|
|
230
231
|
.p-selection-column .p-checkbox {
|
|
231
|
-
display: inline-flex;
|
|
232
|
+
/* display: inline-flex; */
|
|
232
233
|
vertical-align: middle;
|
|
233
|
-
justify-content: center;
|
|
234
|
-
align-items: center;
|
|
234
|
+
/* justify-content: center;
|
|
235
|
+
align-items: center; */
|
|
235
236
|
}
|
|
236
237
|
|
|
237
238
|
.p-column-header-content .p-checkbox {
|