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
41
42
43
44
45
46
47
48
49
50
51
52
| .mk-key-wrap {
| position: relative;
| margin-bottom: 5px;
|
| .mk-key-edit {
| position: absolute;
| right: 0px;
| line-height: 1;
|
| .anticon {
| margin-left: 10px;
| cursor: pointer;
| padding: 0px 5px;
| }
| .anticon-edit {
| color: #1890ff;
| }
| .anticon-delete {
| color: #f5222d;
| }
| .anticon-delete.disable {
| opacity: 0.5;
| cursor: not-allowed;
| }
| }
| }
| .mk-key-modal {
| .ant-modal {
| top: 85px;
| }
| .ant-modal-body {
| padding-top: 35px;
| padding-bottom: 0px;
| }
| .ant-modal-footer {
| border-top: none;
| text-align: center;
| padding-bottom: 30px;
| button + button {
| margin-left: 15px;
| }
| }
| .ant-form-item {
| display: flex;
| .ant-form-item-label {
| width: 20%;
| }
| .ant-form-item-control-wrapper {
| width: 70%;
| }
| }
| }
|
|