1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
| .common-table-columns-transfer {
| padding-left: 18px;
|
| .ant-transfer {
| white-space: nowrap;
| }
| .ant-transfer-list-body-with-search {
| padding-top: 45px;
| .ant-transfer-list-body-search-wrapper {
| padding: 5px;
| }
| }
| .ant-transfer-list {
| width: calc(50% - 20px);
| height: 250px;
| i {
| display: none;
| }
| }
| .ant-transfer-operation + .ant-transfer-list {
| .ant-transfer-list-content-item {
| padding-right: 50px;
| position: relative;
|
| i {
| display: inline-block;
| }
| .anticon {
| position: absolute;
| right: 10px;
| color: #ff4d4f;
| }
| .anticon-arrow-up {
| position: absolute;
| right: 30px;
| color: #1890ff;
| }
| }
| }
| }
|
|