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
| .viewer-footer {
| & .viewer-title {
| font-size: 14px;
| color: #000;
| }
| & .viewer-list {
| height: 40px;
| padding: 1px 0;
| }
| & .viewer-list li {
| height: 40px;
| width: 60px;
| padding-right: 10px;
| }
| /* & .viewer-prev,
| & .viewer-next {
| position: fixed;
| top: 50%;
| margin-top: -12px;
| }
| & .viewer-prev {
| left: 20px;
| }
| & .viewer-next {
| right: 20px;
| } */
| & .viewer-del {
| color: #fff;
| background-image: url(../assets/delete.svg);
| background-position: center center;
| background-repeat: no-repeat;
| background-size: 52% auto;
| }
| & .viewer-download {
| color: #fff;
| background-image: url(../assets/download.svg);
| background-position: center center;
| background-repeat: no-repeat;
| background-size: 52% auto;
| }
| & .viewer-active {
| opacity: 1;
| }
| }
|
| .form-buttons {
| padding-left: 120px;
| display: flex;
| & >>> .el-button {
| margin-left: 30px;
| }
| }
| .popup-form-buttons {
| display: flex;
| justify-content:center;
| & >>> .el-button {
| margin-left: 30px;
| }
| }
|
| .table-buttons-popover {
| padding: 14px 20px 14px 0;
| min-width: 0;
| &[x-placement^=top]{
| margin-bottom: 15px;
| }
| &[x-placement^=bottom]{
| margin-top: 15px;
| }
| & .el-button{
| padding: 0;
| margin-left: 20px;
| }
| & .more-buttons {
| padding: 0 20px;
| display: flex;
| align-items: center;
| justify-content: space-between;
| flex-wrap: nowrap;
|
| & .el-link {
| margin-right: 20px;
| color: #0081f0;
| &:last-child {
| margin: 0;
| }
| }
| }
| }
|
| .file-uploader{
| & .el-upload-dragger{
| width: auto;
| height: auto;
| }
| }
|
| .dialog-form-title {
| text-align: center;
| font-size: 18px;
| font-weight: 500;
| color: rgba(34, 34, 34, 1);
| line-height: 25px;
| padding: 0;
| margin: 0 0 20px 0;
| }
| .comm-button {
| width: 120px;
| padding: 0;
| line-height: 28px;
| text-align: center;
| font-size: 14px;
| font-weight: 400;
| box-sizing: border-box;
| }
|
|