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
| .ant-card-meta-detail {
| overflow: visible;
| .ant-card-meta-title, .ant-card-meta-description {
| position: relative;
| overflow: visible;
| }
| .ant-card-meta-description {
| display: inline-block;
| width: 100%;
| vertical-align: top;
|
| .content {
| overflow: hidden;
| word-break: break-word;
| white-space: nowrap;
| text-overflow: ellipsis;
| }
| }
| .edit {
| position: absolute;
| left: 0;
| top: -10px;
| font-size: 14px;
| color: #1890ff;
| cursor: pointer;
| display: none;
| }
| .edit.close {
| left: 20px;
| color: #ff4d4f;
| }
|
| .ant-card-meta-title:hover .edit, .ant-card-meta-description:hover .edit {
| display: inline-block;
| }
| }
|
|