@flatbiz/antd 4.1.3 → 4.1.5
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 +14 -5
- package/cjs/index.js +1 -1
- package/cjs/index.js.map +1 -1
- package/index.d.ts +5 -3
- package/package.json +1 -1
package/cjs/index.css
CHANGED
|
@@ -19,6 +19,13 @@ ul {
|
|
|
19
19
|
clear: both;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
+
.dmw-popconfirm .ant-popconfirm-buttons {
|
|
23
|
+
display: flex;
|
|
24
|
+
justify-content: right;
|
|
25
|
+
}
|
|
26
|
+
.dmw-popconfirm .ant-popconfirm-buttons > .ant-btn:nth-child(1) {
|
|
27
|
+
margin-left: 0;
|
|
28
|
+
}
|
|
22
29
|
|
|
23
30
|
.table-operate {
|
|
24
31
|
padding: 0 5px;
|
|
@@ -309,22 +316,24 @@ ul {
|
|
|
309
316
|
}
|
|
310
317
|
|
|
311
318
|
.icon-wrapper {
|
|
312
|
-
cursor: pointer;
|
|
313
319
|
display: flex;
|
|
314
320
|
align-items: center;
|
|
315
321
|
padding: 6px;
|
|
316
322
|
border-radius: 6px;
|
|
317
323
|
margin: 0 -6px;
|
|
318
324
|
}
|
|
319
|
-
.icon-wrapper
|
|
325
|
+
.icon-wrapper .anticon + .icon-wrapper-text {
|
|
326
|
+
margin-left: 3px;
|
|
327
|
+
}
|
|
328
|
+
.icon-wrapper-tigger {
|
|
329
|
+
cursor: pointer;
|
|
330
|
+
}
|
|
331
|
+
.icon-wrapper-tigger:hover {
|
|
320
332
|
transform: scale(1.1);
|
|
321
333
|
transition: all ease-in 0.1s;
|
|
322
334
|
position: relative;
|
|
323
335
|
background-color: rgba(0, 0, 0, 0.06);
|
|
324
336
|
}
|
|
325
|
-
.icon-wrapper .anticon + .icon-wrapper-text {
|
|
326
|
-
margin-left: 3px;
|
|
327
|
-
}
|
|
328
337
|
.icon-wrapper-small {
|
|
329
338
|
font-size: 14px;
|
|
330
339
|
padding: 3px;
|