ls-pro-common 3.0.21 → 3.0.23
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 +24 -7
- package/dist/common.js +1 -1
- package/dist/common.min.css +24 -7
- package/dist/common.min.js +1 -1
- package/es/components/DescritionCard.js +3 -11
- package/es/components/InputTable.js +13 -27
- package/es/components/common.less +28 -24
- package/lib/components/DescritionCard.js +3 -11
- package/lib/components/InputTable.js +13 -27
- package/lib/components/common.less +28 -24
- package/package.json +2 -2
package/dist/common.css
CHANGED
|
@@ -260,22 +260,39 @@ a:hover {
|
|
|
260
260
|
max-height: calc(100vh - 180px);
|
|
261
261
|
overflow-y: auto;
|
|
262
262
|
}
|
|
263
|
+
.description-card {
|
|
264
|
+
border: solid 1px #EAEEF2;
|
|
265
|
+
}
|
|
266
|
+
.description-card.ant-pro-card {
|
|
267
|
+
box-shadow: none;
|
|
268
|
+
}
|
|
269
|
+
.description-card .btn-expand {
|
|
270
|
+
margin: auto;
|
|
271
|
+
margin-left: 20px;
|
|
272
|
+
font-size: 13px;
|
|
273
|
+
color: #8C8C8C;
|
|
274
|
+
}
|
|
275
|
+
.description-card .btn-expand :hover {
|
|
276
|
+
color: var(--ant-primary-color);
|
|
277
|
+
}
|
|
263
278
|
.description-card .ant-pro-card-header {
|
|
264
|
-
height:
|
|
279
|
+
height: 38px;
|
|
280
|
+
padding: 12px;
|
|
281
|
+
background-color: #F4F7FD;
|
|
265
282
|
}
|
|
266
283
|
.description-card .ant-pro-card-body {
|
|
267
|
-
padding: 12px
|
|
284
|
+
padding: 20px 12px;
|
|
268
285
|
}
|
|
269
286
|
.description-card .ant-pro-card-header-border {
|
|
270
|
-
border-bottom: 1px solid #
|
|
287
|
+
border-bottom: 1px solid #EAEEF2;
|
|
288
|
+
}
|
|
289
|
+
.description-card .ant-descriptions-row > td,
|
|
290
|
+
.description-card .ant-descriptions-row > th {
|
|
291
|
+
padding-bottom: 12px;
|
|
271
292
|
}
|
|
272
293
|
.has-background {
|
|
273
294
|
background: #f6fafe;
|
|
274
295
|
}
|
|
275
|
-
.has-background .ant-descriptions-row > td,
|
|
276
|
-
.has-background .ant-descriptions-row > th {
|
|
277
|
-
padding-bottom: 10px;
|
|
278
|
-
}
|
|
279
296
|
.ls-group-tip {
|
|
280
297
|
display: flex;
|
|
281
298
|
position: relative;
|