ls-pro-common 1.0.88 → 1.0.90
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 +9 -3
- package/dist/common.js +1 -1
- package/dist/common.min.css +9 -3
- package/dist/common.min.js +1 -1
- package/es/components/DescritionCard.d.ts +1 -0
- package/es/components/DescritionCard.js +8 -4
- package/es/components/InputMultiLine.d.ts +3 -0
- package/es/components/InputMultiLine.js +10 -5
- package/es/components/InputTable.js +19 -16
- package/es/components/Loading.d.ts +1 -0
- package/es/components/Loading.js +17 -4
- package/es/components/common.less +12 -3
- package/lib/components/DescritionCard.d.ts +1 -0
- package/lib/components/DescritionCard.js +7 -3
- package/lib/components/InputMultiLine.d.ts +3 -0
- package/lib/components/InputMultiLine.js +11 -6
- package/lib/components/InputTable.js +19 -16
- package/lib/components/Loading.d.ts +1 -0
- package/lib/components/Loading.js +19 -4
- package/lib/components/common.less +12 -3
- package/package.json +2 -2
package/dist/common.css
CHANGED
|
@@ -223,17 +223,20 @@ a:hover {
|
|
|
223
223
|
max-height: calc(100vh - 180px);
|
|
224
224
|
overflow-y: auto;
|
|
225
225
|
}
|
|
226
|
+
.description-card .ant-pro-card-header {
|
|
227
|
+
height: 50px;
|
|
228
|
+
}
|
|
226
229
|
.description-card .ant-pro-card-body {
|
|
227
|
-
padding:
|
|
230
|
+
padding: 12px 24px 2px;
|
|
228
231
|
}
|
|
229
232
|
.description-card .ant-pro-card-header-border {
|
|
230
233
|
border-bottom: 1px solid #dbeafa;
|
|
231
234
|
}
|
|
232
235
|
.description-card .ant-descriptions-item-label {
|
|
233
|
-
color: #
|
|
236
|
+
color: #595959;
|
|
234
237
|
}
|
|
235
238
|
.description-card .ant-descriptions-item-content {
|
|
236
|
-
color: #
|
|
239
|
+
color: #262626;
|
|
237
240
|
}
|
|
238
241
|
.has-background {
|
|
239
242
|
background: #f6fafe;
|
|
@@ -249,6 +252,9 @@ a:hover {
|
|
|
249
252
|
max-height: 60vh;
|
|
250
253
|
overflow: auto;
|
|
251
254
|
}
|
|
255
|
+
.ant-row {
|
|
256
|
+
width: 100%;
|
|
257
|
+
}
|
|
252
258
|
|
|
253
259
|
.pro-table-tooltip-text span {
|
|
254
260
|
color: #fff;
|