ls-pro-common 3.0.18 → 3.0.19
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 +8 -0
- package/dist/common.js +1 -1
- package/dist/common.min.css +8 -0
- package/dist/common.min.js +1 -1
- package/es/components/InputTable.js +94 -49
- package/es/components/antd-custom.less +1 -0
- package/lib/components/InputTable.js +93 -48
- package/lib/components/antd-custom.less +1 -0
- package/package.json +1 -1
package/dist/common.min.css
CHANGED
|
@@ -471,22 +471,30 @@ a:hover {
|
|
|
471
471
|
border-color: transparent;
|
|
472
472
|
color: #fff;
|
|
473
473
|
}
|
|
474
|
+
.ant-btn-dashed,
|
|
474
475
|
.ant-btn-gray {
|
|
475
476
|
background-color: #F1F4F6;
|
|
476
477
|
color: #1B1F2A;
|
|
477
478
|
}
|
|
479
|
+
.ant-btn-dashed:hover,
|
|
478
480
|
.ant-btn-gray:hover,
|
|
481
|
+
.ant-btn-dashed:focus,
|
|
479
482
|
.ant-btn-gray:focus {
|
|
480
483
|
background-color: #D2D6DD;
|
|
481
484
|
color: #1B1F2A;
|
|
482
485
|
}
|
|
486
|
+
.ant-btn-dashed:active,
|
|
483
487
|
.ant-btn-gray:active {
|
|
484
488
|
background-color: #B5BBC5;
|
|
485
489
|
color: #1B1F2A;
|
|
486
490
|
}
|
|
491
|
+
.ant-btn-dashed[disabled],
|
|
487
492
|
.ant-btn-gray[disabled],
|
|
493
|
+
.ant-btn-dashed[disabled]:hover,
|
|
488
494
|
.ant-btn-gray[disabled]:hover,
|
|
495
|
+
.ant-btn-dashed[disabled]:focus,
|
|
489
496
|
.ant-btn-gray[disabled]:focus,
|
|
497
|
+
.ant-btn-dashed[disabled]:active,
|
|
490
498
|
.ant-btn-gray[disabled]:active {
|
|
491
499
|
background-color: #F1F4F6;
|
|
492
500
|
color: #818999;
|