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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
| .data-source-wrap {
| .el-input__inner {
| width: 100%;
| }
| .filter-input .el-input__inner {
| width: 200px;
| }
| .dsItem {
| height: 116px;
| }
| .card-list {
| margin: 0 10px 10px;
| .card-title {
| margin-top: 8px;
| padding: 0 16px;
| height: 40px;
| max-width: 100%;
| overflow: hidden;
| text-overflow: ellipsis;
| white-space: nowrap;
| line-height: 40px;
| font-weight: 400;
| font-style: normal;
| font-size: 16px;
| color: #4e5054;
| }
| .card-type {
| margin: 12px 0;
| padding: 0 16px;
| height: 18px;
| line-height: 18px;
| width: 100%;
| overflow: hidden;
| text-overflow: ellipsis;
| white-space: nowrap;
| font-size: 13px;
| color: #7c8496;
| }
| .card-button {
| display: flex;
| width: 100%;
| background-color: #f6f8fb;
| height: 35px;
| justify-content: space-evenly;
| align-items: center;
| .btn-col {
| width: 100%;
| font-weight: 400;
| font-style: normal;
| font-size: 14px;
| color: #7c8496;
| line-height: 22px;
| cursor: pointer;
| position: relative;
| span {
| display: inline-block;
| width: 100%;
| text-align: center;
| }
| &:hover {
| color: #1183FF;
| }
| }
| .btn-disabled {
| &:hover {
| color: #7c8496;
| cursor: not-allowed;
| }
| }
| .btn-col::after {
| position: absolute;
| top: 3px;
| content: '';
| width: 1px;
| height: 16px;
| background: #e1e2e3;
| }
| .btn-col:last-of-type::after {
| display: none;
| }
| }
| }
| .add-card {
| margin: 0 10px 10px;
| height: 117px;
| line-height: 117px;
| text-align: center;
| font-size: 28px;
| font-weight: 400;
| cursor: pointer;
| position: relative;
| .modal {
| display: none;
| width: 100%;
| height: 117px;
| position: absolute;
| background: rgba(8, 8, 8, 0.15);
| color: #1183FF;
| top: 0;
| left: 0;
| }
| &:hover {
| span {
| display: none;
| }
| .modal {
| display: block;
| }
| }
| }
| .searchInput{
| width: 100%;
| }
| .dsFontImage {
| width: 150px;
| height: 70px;
| line-height: 70px;
| text-align: center;
| background: rgba(33, 139, 255, 0.7);
| color: #fff;
| font-weight: bold;
| font-size: 22px;
| }
| .FontIcon {
| height: 36px;
| width: 100%;
| line-height: 36px;
| text-align: center;
| margin: 0 auto;
| // border-radius: 7px;
| background: rgba(33, 139, 255, 0.7);
| font-size: 18px;
| font-weight: bold;
| color: #fff;
| }
| ::v-deep .el-button.item {
| border-width: 0;
| &:hover, &:focus {
| outline: none;
| }
| }
| .dsType {
| border: 1px solid #ccc;
| }
| .dsName {
| font-size: 14px;
| }
| }
| .el-dialog {
| .bs-container {
| // max-height: calc(90vh - 236px);
| .el-table {
| max-height: calc(90vh - 340px);
| }
| ::v-deep .ztree {
| max-height: calc(90vh - 325px) !important;
| }
| }
| }
|
|