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
| .menu-data-card-edit-box {
| position: relative;
| box-sizing: border-box;
| background: #ffffff;
|
| .anticon-tool {
| position: absolute;
| z-index: 1;
| font-size: 16px;
| right: 0;
| top: 0;
| cursor: pointer;
| padding: 10px;
| }
|
| .card-item {
| position: relative;
| min-height: 50px;
| border: 1px solid #e8e8e8;
| }
|
| .card-item:hover {
| box-shadow: 0px 0px 2px #e8e8e8;
| }
| }
| .menu-data-card-edit-box::after {
| display: block;
| content: ' ';
| clear: both;
| }
| .menu-data-card-edit-box:hover {
| box-shadow: 0px 0px 2px #e8e8e8;
| }
|
|