ls-pro-common 3.0.22 → 3.0.24
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 +25 -7
- package/dist/common.js +1 -1
- package/dist/common.min.css +25 -7
- package/dist/common.min.js +1 -1
- package/es/components/DescritionCard.js +3 -11
- package/es/components/common.less +29 -24
- package/lib/components/DescritionCard.js +3 -11
- package/lib/components/common.less +29 -24
- package/package.json +1 -1
package/dist/common.min.css
CHANGED
|
@@ -260,22 +260,40 @@ 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;
|
|
282
|
+
border-radius: 8px 8px 0 0;
|
|
265
283
|
}
|
|
266
284
|
.description-card .ant-pro-card-body {
|
|
267
|
-
padding: 12px
|
|
285
|
+
padding: 20px 12px;
|
|
268
286
|
}
|
|
269
287
|
.description-card .ant-pro-card-header-border {
|
|
270
|
-
border-bottom: 1px solid #
|
|
288
|
+
border-bottom: 1px solid #EAEEF2;
|
|
289
|
+
}
|
|
290
|
+
.description-card .ant-descriptions-row > td,
|
|
291
|
+
.description-card .ant-descriptions-row > th {
|
|
292
|
+
padding-bottom: 12px;
|
|
271
293
|
}
|
|
272
294
|
.has-background {
|
|
273
295
|
background: #f6fafe;
|
|
274
296
|
}
|
|
275
|
-
.has-background .ant-descriptions-row > td,
|
|
276
|
-
.has-background .ant-descriptions-row > th {
|
|
277
|
-
padding-bottom: 10px;
|
|
278
|
-
}
|
|
279
297
|
.ls-group-tip {
|
|
280
298
|
display: flex;
|
|
281
299
|
position: relative;
|