bug
zhangzeli
2022-01-10 9252ac63bade4c0e155b2c5a2882fdfda863ee96
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
.apply-operation {
    display: flex;
    justify-content: space-between;
    width: 100%;
 
    button {
        margin-right: 8px;
    }
}
 
.process-list-wrapper {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    overflow: auto;
}
 
.process-card {
    margin: 10px 25px 10px 0;
    width: 355px;
 
    :hover {
        .content .other .name {
            color: #1890ff;
            transition: color .3s;
        }
    }
 
    cursor: pointer;
 
    .ivu-card-body {
        padding: 0;
    }
 
    .content {
        display: flex;
        flex-direction: column;
 
        .other {
            padding: 16px;
            height: 130px;
 
            .name {
                font-size: 16px;
                text-overflow: ellipsis;
                overflow: hidden;
                white-space: nowrap;
                color: rgba(0, 0, 0, .85);
                font-weight: 500;
                margin-bottom: 4px;
            }
 
            .key {
                overflow: hidden;
                text-overflow: ellipsis;
                height: 45px;
                word-break: break-all;
                color: rgba(0, 0, 0, .45);
            }
 
            .info {
                font-size: 12px;
                color: rgba(0, 0, 0, .45);
                overflow: hidden;
                text-overflow: ellipsis;
                height: 36px;
                word-break: break-all;
            }
        }
    }
}
 
.process-choose-drawer-footer {
    z-index: 10;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    border-top: 1px solid #e8e8e8;
    padding: 10px 16px;
    text-align: right;
    background: #fff;
}