forked from gzzfw/frontEnd/gzDyh

dminyi
2024-09-09 862311c4686345362fcbc60e92c969fb5cb3369d
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
.workflowManage {
    margin: @pageMargin;
 
    .pageTable {
        margin-top: @pageUpDownMargin;
    }
 
    &-edit {
        flex: 1;
        margin: @pageMargin;
        background-color: #ffffff;
        padding: 12px 16px;
        display: flex;
        flex-direction: column;
 
        &-titleIcon {
            font-size: 16px;
            margin-right: 8px;
        }
 
        &-form {
            flex: 1;
            margin-bottom: 32px;
        }
 
        &-detail {
            flex: 1;
        }
 
        &-divider {
            border-top: 1px solid @divider-color;
        }
 
        &-switchSubtitle {
            color: @text-color-secondary;
            margin-top: 4px;
            margin-bottom: 8px;
        }
 
        &-step {
            display: flex;
            align-items: stretch;
            overflow-x: auto;
            padding: 8px 4px;
            margin: -8px -4px;
 
            &-item {
                min-width: 260px;
                min-height: 320px;
                padding: 12px 16px;
                background-color: #ffffff;
                border-radius: 5px;
                box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.2);
                margin-right: 24px;
                display: flex;
                flex-direction: column;
 
                &:last-child {
                    margin-right: 0;
                }
 
                &:hover {
                    .workflowManage-detail-step-button {
                        visibility: visible;
                    }
                }
            }
 
            &-header {
                display: flex;
                align-items: center;
                margin-bottom: 16px;
            }
 
            &-icon {
                width: 18px;
                height: 18px;
                background-color: @main-color;
                border-radius: 0px 5px 0px 5px;
                color: #ffffff;
                text-align: center;
                line-height: 18px;
                margin-right: 8px;
            }
 
            &-content {
                flex: 1;
 
                h5 {
                    margin-bottom: 4px;
                }
            }
 
            &-button {
                visibility: hidden;
                text-align: center;
                margin-top: 16px;
            }
        }
 
        &-subtitle {
            color: @text-color-secondary;
        }
 
        &-dispute {
            &-flex {
                display: flex;
                justify-content: space-between;
            }
 
            &-checkbox {
                padding: 4px 12px;
            }
 
            &-checkboxActive {
                background-color: @main-color-1;
 
                .ant-checkbox + span {
                    color: @main-color;
                }
            }
        }
    }
}