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
.file-upload {
display: flex;
width: auto;
height: auto;
flex-wrap: wrap;
margin-left: -8px;
margin-top: -8px;
color: rgb(67,78,82);
.file-upload__contnet{
width: 350px;
height: 50px;
display: flex;
align-items: center;
position: relative;
border-radius: 4px;
margin-left: 8px;
margin-top: 8px;
background: rgb(241,249,234);
i{
font-size: 24px;
margin: 0 8px;
}
.fileEditor{
position: absolute;
right: 50px;
}
.fileDelete{
position: absolute;
right: 10px;
}
.filePreview{
position: absolute;
right: 90px;
}
}
.file-upload__disable{
background: rgb(252,240,240);
}
.file-upload__add{
display: flex;
align-items: center;
justify-content: center;
width: 350px;
height: 50px;
border-radius: 4px;
margin-left: 8px;
margin-top: 8px;
border: 1px rgb(227,227,227) dotted;
cursor: pointer;
.el-icon-plus{
font-size: 24px;
margin: 0 auto;
}
}
}
.file-upload__upload{
visibility: hidden;
}
.file-upload__dialog .el-dialog {
height: auto;
}