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
125
126
127
128
129
130
131
132
133
134
135
136
137
| html,
| body,
| #app {
| height: 100%;
| }
| body {
| font-size: 14px;
| color: #222222;
| margin: 0;
| padding: 0;
| &::-webkit-scrollbar {
| width: 10px;
| height: 10px;
| background-color: #fff;
| }
| &::-webkit-scrollbar-thumb {
| border-radius: 1em;
| background: rgba(0, 0, 0, 0.5);
| }
| &::-webkit-scrollbar-track {
| border-radius: 1em;
| background-color: transparent;
| }
| }
|
| body,
| input,
| textarea {
| font-family: 'PingFangSC-Medium', 'PingFangSC', '-apple-system',
| 'BlinkMacSystemFont', 'Segoe UI', Roboto, 'Helvetica Neue', Helvetica,
| 'Hiragino Sans GB', 'Microsoft YaHei', SimSun, 'sans-serif';
| }
|
| input {
| color: #222222;
| font-size: 14px;
| }
|
| input::-webkit-input-placeholder {
| color: #eeeeee;
| font-size: 14px;
| }
|
| .comm-button {
| width: 120px;
| padding: 0;
| line-height: 28px;
| text-align: center;
| font-size: 14px;
| font-weight: 400;
| box-sizing: border-box;
| /* color: rgba(85, 85, 85, 1); */
| }
|
| .comm-button-primary {
| /* color: rgba(255, 255, 255, 1); */
| }
|
| .dialog-form-title {
| text-align: center;
| font-size: 18px;
| font-weight: 500;
| color: rgba(34, 34, 34, 1);
| line-height: 25px;
| }
|
| .table-buttons-popover {
| min-width: auto;
| margin-top: 10px !important;
| & .more-buttons {
| padding: 0 20px;
| display: flex;
| align-items: center;
| justify-content: space-between;
| flex-wrap: nowrap;
| margin: 0;
| padding: 0;
| }
|
| & .el-link {
| margin-right: 20px;
| color: #0081f0;
| }
|
| & .el-link:last-child {
| margin: 0;
| }
| }
|
| .search-form {
| padding-top: 16px;
| & >>> .el-dialog__header {
| padding-bottom: 0;
| }
| & >>> .el-dialog__body {
| padding-top: 0;
| }
| & >>> .el-dialog {
| width: 950px;
| }
| & >>> .comm-dialog {
| width: 1200px;
| }
| & .middle-button {
| margin-bottom: 20px;
| display: flex;
| & .el-button--primary {
| background-color: #0081f0;
| border-color: #0081f0;
| }
| & .random-task {
| cursor: pointer;
| line-height: 32px;
| color: #fff;
| padding: 0 20px 0 32px;
| background: url(../assets/distribution.png) 10px center no-repeat #0081f0;
| border-radius: 3px;
| border-color: #0081f0;
| }
| }
| }
|
| thead {
| & .table-required-label .cell {
| &::before {
| content: '*';
| color: #f56c6c;
| margin-right: 4px;
| }
| }
| }
| .file-uploader{
| & .el-upload-dragger{
| width: auto;
| height: auto;
| }
| }
|
|