2023西安数博会CIM演示-【前端】-Web
AdaKing88
2023-08-21 bc03b832caa49bbcd2674fe4cae3701b5059bf95
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
.app-container {
    padding: 0px;
    height: calc(100% - 0px);
 
    .el-container {
        height: 100%;
        padding: 5px;
    }
 
    .el-aside {
        height: 100%;
    }
 
    .el-input__inner,
    .el-range-input {
        background-color: transparent;
        background-image: none;
        border-radius: 0px;
        border: 1px solid #5c6d96;
        color: #ffffff;
    }
 
    .tree-card {
        border: 0 !important;
        overflow: auto;
        height: 100%;
        border-radius: 0 !important;
        background: rgba(0, 166, 226, 0.2) !important;
 
        .el-card__header {
            background: rgba(0, 166, 226, 0.6) !important;
            // box-shadow: 0px 0px 4px 0px rgba(14, 22, 32, 0.2);
            // border-radius: 6px 6px 0px 0px;
            height: 42px;
            font-size: 16px;
            font-weight: 400;
            border-bottom: 0;
            padding: 10px;
        }
    }
 
    .el-form-item__label {
        color: rgba(240, 250, 254, 1);
    }
 
    .el-main {
        height: 100%;
        background: rgba(30, 44, 69, 1);
 
        .el-table tr {
            background-color: transparent;
            color: rgba(240, 250, 254, 0.65);
        }
 
        .el-table tr th {
            background-color: rgba(240, 250, 254, 0.1);
            color: rgba(240, 250, 254, 0.85);
        }
 
        .el-table tr:hover>td {
            background-color: rgba(0, 166, 226, 0.4) !important;
        }
 
        .el-pagination .btn-prev,
        .el-pagination .btn-next,
        .el-pagination .el-input__inner,
        .el-pagination .el-pager li {
            background-color: rgba(0, 166, 226, 0.02);
            border-radius: 2px 2px 2px 2px;
            border: 1px solid rgba(240, 250, 254, 0.3);
            color: rgba(240, 250, 254, 0.65) !important;
        }
 
        .el-pagination .el-pagination__jump {
            color: rgba(240, 250, 254, 0.65);
        }
 
        .el-input__inner {
            background-color: transparent;
            background-image: none;
            border-radius: 0px;
            border: 1px solid #5c6d96;
            color: #ffffff;
        }
 
        .el-input-group__append {
            background: transparent;
            border: 1px solid #5c6d96;
            color: #ffffff;
        }
 
        .el-table__body-wrapper::-webkit-scrollbar {
            width: 10px; // 横向滚动条
            height: 10px; // 纵向滚动条 必写
        }
 
        // 滚动条的滑块
        .el-table__body-wrapper::-webkit-scrollbar-thumb {
            border-radius: 3px;
            background-color: skyblue;
            background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
 
        }
 
        .el-tag {
            background: rgba(61, 190, 253, 0.1) !important;
            border: 1px solid #00A6E2 !important;
        }
 
        .el-tree {
            background: transparent !important;
            color: rgba(240, 250, 254, 0.85);
            font-size: 16px;
 
            .el-tree-node__content:hover {
                background-color: transparent;
            }
        }
 
        .pagination-container {
            background: transparent;
            text-align: center;
        }
    }
 
    .mb8 {
        margin-bottom: 8px;
    }
}