@flatbiz/antd 4.0.26 → 4.0.28
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/cjs/index.css +37 -37
- package/cjs/index.js +1 -1
- package/cjs/index.js.map +1 -1
- package/index.d.ts +14 -5
- package/package.json +1 -1
package/cjs/index.css
CHANGED
|
@@ -307,6 +307,43 @@ ul {
|
|
|
307
307
|
justify-content: space-between;
|
|
308
308
|
}
|
|
309
309
|
|
|
310
|
+
.icon-wrapper {
|
|
311
|
+
cursor: pointer;
|
|
312
|
+
display: flex;
|
|
313
|
+
align-items: center;
|
|
314
|
+
padding: 6px;
|
|
315
|
+
border-radius: 6px;
|
|
316
|
+
margin: 0 -6px;
|
|
317
|
+
}
|
|
318
|
+
.icon-wrapper:hover {
|
|
319
|
+
transform: scale(1.1);
|
|
320
|
+
transition: all ease-in 0.1s;
|
|
321
|
+
position: relative;
|
|
322
|
+
background-color: rgba(0, 0, 0, 0.06);
|
|
323
|
+
}
|
|
324
|
+
.icon-wrapper .anticon + .icon-wrapper-text {
|
|
325
|
+
margin-left: 3px;
|
|
326
|
+
}
|
|
327
|
+
.icon-wrapper-small {
|
|
328
|
+
font-size: 14px;
|
|
329
|
+
padding: 3px;
|
|
330
|
+
margin: 0 -3px;
|
|
331
|
+
border-radius: 3px;
|
|
332
|
+
}
|
|
333
|
+
.icon-wrapper-middle {
|
|
334
|
+
font-size: 16px;
|
|
335
|
+
}
|
|
336
|
+
.icon-wrapper-large {
|
|
337
|
+
font-size: 20px;
|
|
338
|
+
}
|
|
339
|
+
.icon-wrapper.icon-wrapper-hidden-hover-bgcolor {
|
|
340
|
+
padding: 0;
|
|
341
|
+
margin: 0;
|
|
342
|
+
}
|
|
343
|
+
.icon-wrapper.icon-wrapper-hidden-hover-bgcolor:hover {
|
|
344
|
+
background-color: transparent;
|
|
345
|
+
}
|
|
346
|
+
|
|
310
347
|
.editable-field-full > .ant-space-item:nth-child(1) {
|
|
311
348
|
flex: 1;
|
|
312
349
|
}
|
|
@@ -392,43 +429,6 @@ ul {
|
|
|
392
429
|
align-items: flex-start;
|
|
393
430
|
}
|
|
394
431
|
|
|
395
|
-
.icon-wrapper {
|
|
396
|
-
cursor: pointer;
|
|
397
|
-
display: flex;
|
|
398
|
-
align-items: center;
|
|
399
|
-
padding: 6px;
|
|
400
|
-
border-radius: 6px;
|
|
401
|
-
margin: 0 -6px;
|
|
402
|
-
}
|
|
403
|
-
.icon-wrapper:hover {
|
|
404
|
-
transform: scale(1.1);
|
|
405
|
-
transition: all ease-in 0.1s;
|
|
406
|
-
position: relative;
|
|
407
|
-
background-color: rgba(0, 0, 0, 0.06);
|
|
408
|
-
}
|
|
409
|
-
.icon-wrapper .anticon + .icon-wrapper-text {
|
|
410
|
-
margin-left: 3px;
|
|
411
|
-
}
|
|
412
|
-
.icon-wrapper-small {
|
|
413
|
-
font-size: 14px;
|
|
414
|
-
padding: 3px;
|
|
415
|
-
margin: 0 -3px;
|
|
416
|
-
border-radius: 3px;
|
|
417
|
-
}
|
|
418
|
-
.icon-wrapper-middle {
|
|
419
|
-
font-size: 16px;
|
|
420
|
-
}
|
|
421
|
-
.icon-wrapper-large {
|
|
422
|
-
font-size: 20px;
|
|
423
|
-
}
|
|
424
|
-
.icon-wrapper.icon-wrapper-hidden-hover-bgcolor {
|
|
425
|
-
padding: 0;
|
|
426
|
-
margin: 0;
|
|
427
|
-
}
|
|
428
|
-
.icon-wrapper.icon-wrapper-hidden-hover-bgcolor:hover {
|
|
429
|
-
background-color: transparent;
|
|
430
|
-
}
|
|
431
|
-
|
|
432
432
|
.v-label-value-layout .ant-descriptions-item-label {
|
|
433
433
|
width: var(--v-label-value-layout-lWidth);
|
|
434
434
|
color: rgba(0, 0, 0, 0.45);
|