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
53
54
55
| .line-card-edit-box .ant-card-meta-detail {
| overflow: visible;
| .ant-card-meta-title, .ant-card-meta-description {
| position: relative;
| overflow: visible;
| display: inline-block;
| width: 100%;
| vertical-align: top;
| font-size: 14px;
|
| .content {
| max-width: 100%;
| display: inline-block;
| overflow: hidden;
| word-break: break-word;
| white-space: nowrap;
| text-overflow: ellipsis;
| }
| }
|
| .helf {
| width: 50%;
| }
| .third {
| width: 33.3%;
| }
| .align-center {
| text-align: center;
| }
| .align-right {
| text-align: right;
| }
| .ant-card-meta-title:not(:last-child), .ant-card-meta-description:not(:last-child) {
| margin-bottom: 0px;
| }
|
| .edit {
| position: absolute;
| left: 0;
| top: -10px;
| font-size: 13px;
| color: #1890ff;
| cursor: pointer;
| display: none;
| padding: 0 5px;
| }
| .edit.close {
| left: 20px;
| color: #ff4d4f;
| }
|
| .ant-card-meta-title:hover .edit, .ant-card-meta-description:hover .edit {
| display: inline-block;
| }
| }
|
|