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
| /* 全局样式表 */
| html,
| body,
| #app {
| height: 100%;
| margin: 0;
| padding: 0;
| min-width: 1280px;
| }
|
| .el-breadcrumb{
| margin-bottom: 15px;
| font-size: 12px;
| }
|
| .el-card{
| box-shadow: 0 1px 1px rgba(0, 0, 0,0.15) !important;
| }
|
| .el-table{
| margin-top: 15px;
| }
|
| .el-pagination{
| margin-top: 15px;
| }
|
| /* 解决层级选择器过长 */
| .el-scrollbar__wrap {
| height: 200px;
| }
|
| .el-cascader-panel .el-radio{
| width: 100%;
| height: 100%;
| z-index: 10;
| position: absolute;
| top: 10px;
| right: 10px;
| }
| .el-cascader-panel .el-radio__input{
| visibility: hidden;
| }
| .el-cascader-panel .el-cascader-node__postfix {
| top: 10px;
| }
|
| .el-steps{
| margin: 15px 0;
| }
| .el-step__title{
| font-size: 13px;
| }
|
| .ql-editor{
| min-height: 300px;
| }
|
|