ls-pro-common 1.0.70 → 1.0.72
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/common.css +70 -5
- package/dist/common.js +1 -1
- package/dist/common.min.css +70 -5
- package/dist/common.min.js +1 -1
- package/es/components/common.less +9 -5
- package/lib/components/common.less +9 -5
- package/package.json +2 -2
package/dist/common.min.css
CHANGED
|
@@ -149,11 +149,17 @@ body {
|
|
|
149
149
|
border-radius: 4px;
|
|
150
150
|
border-color: var(--ant-primary-color);
|
|
151
151
|
color: var(--ant-primary-color);
|
|
152
|
+
height: 28px;
|
|
153
|
+
line-height: 1.2;
|
|
154
|
+
padding: 2px 15px;
|
|
152
155
|
}
|
|
153
156
|
.ant-btn:active {
|
|
154
157
|
border-color: var(--ant-primary-color-hover);
|
|
155
158
|
color: var(--ant-primary-color-hover);
|
|
156
159
|
}
|
|
160
|
+
.ant-btn-icon-only {
|
|
161
|
+
padding: 2px 0;
|
|
162
|
+
}
|
|
157
163
|
.ant-btn-primary {
|
|
158
164
|
color: #fff;
|
|
159
165
|
}
|
|
@@ -215,11 +221,6 @@ a:hover {
|
|
|
215
221
|
max-height: calc(100vh - 180px);
|
|
216
222
|
overflow-y: auto;
|
|
217
223
|
}
|
|
218
|
-
.ant-btn {
|
|
219
|
-
height: 28px;
|
|
220
|
-
line-height: 1.2;
|
|
221
|
-
padding: 2px 15px;
|
|
222
|
-
}
|
|
223
224
|
|
|
224
225
|
.pro-table-tooltip-text span {
|
|
225
226
|
color: #fff;
|
|
@@ -304,6 +305,22 @@ a:hover {
|
|
|
304
305
|
text-overflow: ellipsis;
|
|
305
306
|
overflow: hidden;
|
|
306
307
|
}
|
|
308
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-title.ant-table-cell-fix-right-first,
|
|
309
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-footer.ant-table-cell-fix-right-first,
|
|
310
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-thead > tr > th.ant-table-cell-fix-right-first,
|
|
311
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-tbody > tr > td.ant-table-cell-fix-right-first,
|
|
312
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small tfoot > tr > th.ant-table-cell-fix-right-first,
|
|
313
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small tfoot > tr > td.ant-table-cell-fix-right-first {
|
|
314
|
+
padding-left: 15px;
|
|
315
|
+
}
|
|
316
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-title.ant-table-cell-fix-left-last,
|
|
317
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-footer.ant-table-cell-fix-left-last,
|
|
318
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-thead > tr > th.ant-table-cell-fix-left-last,
|
|
319
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-tbody > tr > td.ant-table-cell-fix-left-last,
|
|
320
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small tfoot > tr > th.ant-table-cell-fix-left-last,
|
|
321
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small tfoot > tr > td.ant-table-cell-fix-left-last {
|
|
322
|
+
padding-right: 15px;
|
|
323
|
+
}
|
|
307
324
|
.ant-pro-table-srcoll .ant-table-placeholder td {
|
|
308
325
|
border-bottom: none;
|
|
309
326
|
}
|
|
@@ -316,6 +333,22 @@ a:hover {
|
|
|
316
333
|
padding: 7px 5px;
|
|
317
334
|
font-size: 12px;
|
|
318
335
|
}
|
|
336
|
+
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-title.ant-table-cell-fix-right-first,
|
|
337
|
+
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-footer.ant-table-cell-fix-right-first,
|
|
338
|
+
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-thead > tr > th.ant-table-cell-fix-right-first,
|
|
339
|
+
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-tbody > tr > td.ant-table-cell-fix-right-first,
|
|
340
|
+
.ls-pro-table-mini .ant-table.ant-table-small tfoot > tr > th.ant-table-cell-fix-right-first,
|
|
341
|
+
.ls-pro-table-mini .ant-table.ant-table-small tfoot > tr > td.ant-table-cell-fix-right-first {
|
|
342
|
+
padding-left: 15px;
|
|
343
|
+
}
|
|
344
|
+
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-title.ant-table-cell-fix-left-last,
|
|
345
|
+
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-footer.ant-table-cell-fix-left-last,
|
|
346
|
+
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-thead > tr > th.ant-table-cell-fix-left-last,
|
|
347
|
+
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-tbody > tr > td.ant-table-cell-fix-left-last,
|
|
348
|
+
.ls-pro-table-mini .ant-table.ant-table-small tfoot > tr > th.ant-table-cell-fix-left-last,
|
|
349
|
+
.ls-pro-table-mini .ant-table.ant-table-small tfoot > tr > td.ant-table-cell-fix-left-last {
|
|
350
|
+
padding-right: 15px;
|
|
351
|
+
}
|
|
319
352
|
.ls-pro-table .ant-table-tbody tr:nth-of-type(odd) {
|
|
320
353
|
background-color: #f7fafc;
|
|
321
354
|
}
|
|
@@ -2238,6 +2271,22 @@ html {
|
|
|
2238
2271
|
text-overflow: ellipsis;
|
|
2239
2272
|
overflow: hidden;
|
|
2240
2273
|
}
|
|
2274
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-title.ant-table-cell-fix-right-first,
|
|
2275
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-footer.ant-table-cell-fix-right-first,
|
|
2276
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-thead > tr > th.ant-table-cell-fix-right-first,
|
|
2277
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-tbody > tr > td.ant-table-cell-fix-right-first,
|
|
2278
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small tfoot > tr > th.ant-table-cell-fix-right-first,
|
|
2279
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small tfoot > tr > td.ant-table-cell-fix-right-first {
|
|
2280
|
+
padding-left: 15px;
|
|
2281
|
+
}
|
|
2282
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-title.ant-table-cell-fix-left-last,
|
|
2283
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-footer.ant-table-cell-fix-left-last,
|
|
2284
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-thead > tr > th.ant-table-cell-fix-left-last,
|
|
2285
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small .ant-table-tbody > tr > td.ant-table-cell-fix-left-last,
|
|
2286
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small tfoot > tr > th.ant-table-cell-fix-left-last,
|
|
2287
|
+
.ant-pro-table-srcoll .ant-table.ant-table-small tfoot > tr > td.ant-table-cell-fix-left-last {
|
|
2288
|
+
padding-right: 15px;
|
|
2289
|
+
}
|
|
2241
2290
|
.ant-pro-table-srcoll .ant-table-placeholder td {
|
|
2242
2291
|
border-bottom: none;
|
|
2243
2292
|
}
|
|
@@ -2250,6 +2299,22 @@ html {
|
|
|
2250
2299
|
padding: 7px 5px;
|
|
2251
2300
|
font-size: 12px;
|
|
2252
2301
|
}
|
|
2302
|
+
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-title.ant-table-cell-fix-right-first,
|
|
2303
|
+
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-footer.ant-table-cell-fix-right-first,
|
|
2304
|
+
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-thead > tr > th.ant-table-cell-fix-right-first,
|
|
2305
|
+
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-tbody > tr > td.ant-table-cell-fix-right-first,
|
|
2306
|
+
.ls-pro-table-mini .ant-table.ant-table-small tfoot > tr > th.ant-table-cell-fix-right-first,
|
|
2307
|
+
.ls-pro-table-mini .ant-table.ant-table-small tfoot > tr > td.ant-table-cell-fix-right-first {
|
|
2308
|
+
padding-left: 15px;
|
|
2309
|
+
}
|
|
2310
|
+
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-title.ant-table-cell-fix-left-last,
|
|
2311
|
+
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-footer.ant-table-cell-fix-left-last,
|
|
2312
|
+
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-thead > tr > th.ant-table-cell-fix-left-last,
|
|
2313
|
+
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-tbody > tr > td.ant-table-cell-fix-left-last,
|
|
2314
|
+
.ls-pro-table-mini .ant-table.ant-table-small tfoot > tr > th.ant-table-cell-fix-left-last,
|
|
2315
|
+
.ls-pro-table-mini .ant-table.ant-table-small tfoot > tr > td.ant-table-cell-fix-left-last {
|
|
2316
|
+
padding-right: 15px;
|
|
2317
|
+
}
|
|
2253
2318
|
.ls-pro-table .ant-table-tbody tr:nth-of-type(odd) {
|
|
2254
2319
|
background-color: #f7fafc;
|
|
2255
2320
|
}
|