imatrix-ui 2.8.5-tmp6 → 2.8.5-tmp7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/styles/index.scss +29 -0
- package/src/styles/theme/black/index.scss +4 -30
- package/src/styles/theme/blue/index.scss +2 -18
- package/src/styles/theme/blue2/index.scss +2 -12
- package/src/styles/theme/dark-blue/index.scss +2 -21
- package/src/styles/theme/gray/index.scss +2 -20
package/package.json
CHANGED
package/src/styles/index.scss
CHANGED
|
@@ -117,4 +117,33 @@ body .el-table colgroup.gutter {
|
|
|
117
117
|
float: right;
|
|
118
118
|
padding-right: 24px;
|
|
119
119
|
line-height: 72px;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
// 带有tab页签的表单高度
|
|
123
|
+
.tab-form-container {
|
|
124
|
+
height: calc(100vh - 190px);
|
|
125
|
+
overflow: auto;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.form-container {
|
|
129
|
+
height: calc(100vh - 110px);
|
|
130
|
+
overflow: auto;
|
|
131
|
+
}
|
|
132
|
+
.form-container-bottom-button {
|
|
133
|
+
margin-bottom: 50px;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.form-container .el-form .el-card {
|
|
137
|
+
margin-bottom: 10px;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.form-container .el-form .el-card:last-child {
|
|
141
|
+
margin-bottom: 0;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.operation-area-float {
|
|
145
|
+
float: right;
|
|
146
|
+
position: fixed;
|
|
147
|
+
bottom: 5px;
|
|
148
|
+
padding-left: 83%;
|
|
120
149
|
}
|
|
@@ -79,6 +79,8 @@
|
|
|
79
79
|
|
|
80
80
|
.app-container {
|
|
81
81
|
padding: 20px;
|
|
82
|
+
border-radius: 6px;
|
|
83
|
+
box-shadow: 0px 1px 8px 0px #00000019;
|
|
82
84
|
}
|
|
83
85
|
|
|
84
86
|
.operation-area {
|
|
@@ -89,24 +91,6 @@
|
|
|
89
91
|
padding-right: 24px;
|
|
90
92
|
padding-top: 10px;
|
|
91
93
|
}
|
|
92
|
-
.form-container {
|
|
93
|
-
height: calc(100vh - 82px);
|
|
94
|
-
overflow: auto;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
.form-container .el-form .el-card {
|
|
98
|
-
margin-bottom: 10px;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
.form-container .el-form .el-card:last-child {
|
|
102
|
-
margin-bottom: 0;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
// 带有tab页签的表单高度
|
|
106
|
-
.tab-form-container {
|
|
107
|
-
height: calc(100vh - 190px);
|
|
108
|
-
overflow: auto;
|
|
109
|
-
}
|
|
110
94
|
|
|
111
95
|
// 解决tab页签中内容多时没有滚动条问题
|
|
112
96
|
.el-tabs__content {
|
|
@@ -217,6 +201,8 @@
|
|
|
217
201
|
|
|
218
202
|
.app-container {
|
|
219
203
|
padding: 20px;
|
|
204
|
+
border-radius: 6px;
|
|
205
|
+
box-shadow: 0px 1px 8px 0px #00000019;
|
|
220
206
|
}
|
|
221
207
|
|
|
222
208
|
.operation-area {
|
|
@@ -224,18 +210,6 @@
|
|
|
224
210
|
height: 40px;
|
|
225
211
|
}
|
|
226
212
|
|
|
227
|
-
.form-container {
|
|
228
|
-
height: calc(100vh - 82px);
|
|
229
|
-
overflow: auto;
|
|
230
|
-
}
|
|
231
|
-
|
|
232
|
-
.form-container .el-form .el-card {
|
|
233
|
-
margin-bottom: 10px;
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
.form-container .el-form .el-card:last-child {
|
|
237
|
-
margin-bottom: 0;
|
|
238
|
-
}
|
|
239
213
|
|
|
240
214
|
|
|
241
215
|
// 解决tab页签中内容多时没有滚动条问题
|
|
@@ -80,6 +80,8 @@
|
|
|
80
80
|
|
|
81
81
|
.app-container {
|
|
82
82
|
padding: 20px;
|
|
83
|
+
border-radius: 6px;
|
|
84
|
+
box-shadow: 0px 1px 8px 0px #00000019;
|
|
83
85
|
}
|
|
84
86
|
|
|
85
87
|
.operation-area {
|
|
@@ -91,24 +93,6 @@
|
|
|
91
93
|
padding-right: 24px;
|
|
92
94
|
padding-top: 10px;
|
|
93
95
|
}
|
|
94
|
-
.form-container {
|
|
95
|
-
height: calc(100vh - 82px);
|
|
96
|
-
overflow: auto;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
.form-container .el-form .el-card {
|
|
100
|
-
margin-bottom: 10px;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
.form-container .el-form .el-card:last-child {
|
|
104
|
-
margin-bottom: 0;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
// 带有tab页签的表单高度
|
|
108
|
-
.tab-form-container {
|
|
109
|
-
height: calc(100vh - 190px);
|
|
110
|
-
overflow: auto;
|
|
111
|
-
}
|
|
112
96
|
|
|
113
97
|
|
|
114
98
|
// 解决tab页签中内容多时没有滚动条问题
|
|
@@ -81,6 +81,8 @@
|
|
|
81
81
|
|
|
82
82
|
.app-container {
|
|
83
83
|
padding: 20px;
|
|
84
|
+
border-radius: 6px;
|
|
85
|
+
box-shadow: 0px 1px 8px 0px #00000019;
|
|
84
86
|
}
|
|
85
87
|
|
|
86
88
|
.operation-area {
|
|
@@ -92,18 +94,6 @@
|
|
|
92
94
|
padding-right: 24px;
|
|
93
95
|
padding-top: 10px;
|
|
94
96
|
}
|
|
95
|
-
.form-container {
|
|
96
|
-
height: calc(100vh - 82px);
|
|
97
|
-
overflow: auto;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
.form-container .el-form .el-card {
|
|
101
|
-
margin-bottom: 10px;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
.form-container .el-form .el-card:last-child {
|
|
105
|
-
margin-bottom: 0;
|
|
106
|
-
}
|
|
107
97
|
|
|
108
98
|
|
|
109
99
|
// 解决tab页签中内容多时没有滚动条问题
|
|
@@ -94,6 +94,8 @@
|
|
|
94
94
|
// padding: 0px;
|
|
95
95
|
padding: 20px 24px;
|
|
96
96
|
background: #FFFFFF;
|
|
97
|
+
border-radius: 6px;
|
|
98
|
+
box-shadow: 0px 1px 8px 0px #00000019;
|
|
97
99
|
|
|
98
100
|
.box-card {
|
|
99
101
|
margin: 0px 24px 0px 0px;
|
|
@@ -111,27 +113,6 @@
|
|
|
111
113
|
text-align: right;
|
|
112
114
|
}
|
|
113
115
|
|
|
114
|
-
|
|
115
|
-
.form-container {
|
|
116
|
-
height: calc(100vh - 100px);
|
|
117
|
-
overflow: auto;
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
.form-container .el-form .el-card {
|
|
121
|
-
margin-bottom: 10px;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
.form-container .el-form .el-card:last-child {
|
|
125
|
-
margin-bottom: 0;
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
// 带有tab页签的表单高度
|
|
129
|
-
.tab-form-container {
|
|
130
|
-
height: calc(100vh - 190px);
|
|
131
|
-
overflow: auto;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
|
|
135
116
|
// 解决tab页签中内容多时没有滚动条问题
|
|
136
117
|
.el-tabs__content {
|
|
137
118
|
flex-grow: 1;
|
|
@@ -78,6 +78,8 @@
|
|
|
78
78
|
.app-container {
|
|
79
79
|
// padding: 20px;
|
|
80
80
|
padding: 0px;
|
|
81
|
+
border-radius: 6px;
|
|
82
|
+
box-shadow: 0px 1px 8px 0px #00000019;
|
|
81
83
|
|
|
82
84
|
.box-card {
|
|
83
85
|
margin: 16px 24px;
|
|
@@ -95,26 +97,6 @@
|
|
|
95
97
|
}
|
|
96
98
|
|
|
97
99
|
|
|
98
|
-
.form-container {
|
|
99
|
-
height: calc(100vh - 82px);
|
|
100
|
-
overflow: auto;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
.form-container .el-form .el-card {
|
|
104
|
-
margin-bottom: 10px;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
.form-container .el-form .el-card:last-child {
|
|
108
|
-
margin-bottom: 0;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
// 带有tab页签的表单高度
|
|
112
|
-
.tab-form-container {
|
|
113
|
-
height: calc(100vh - 190px);
|
|
114
|
-
overflow: auto;
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
|
|
118
100
|
// 解决tab页签中内容多时没有滚动条问题
|
|
119
101
|
.el-tabs__content {
|
|
120
102
|
flex-grow: 1;
|