@luzhaoqi/test 0.0.18 → 0.0.19

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.
@@ -31,10 +31,6 @@ $base-sub-menu-hover:#001528;
31
31
  .k-icon-success:before {
32
32
  content: "\e79c";
33
33
  }
34
-
35
- * {
36
- color: green;
37
- }
38
34
  /* Make clicks pass-through */
39
35
  #nprogress {
40
36
  pointer-events: none;
@@ -99,3 +95,237 @@ $base-sub-menu-hover:#001528;
99
95
  100% { transform: rotate(360deg); }
100
96
  }
101
97
 
98
+
99
+ /* http://meyerweb.com/eric/tools/css/reset/
100
+ v2.0 | 20110126
101
+ License: none (public domain)
102
+ */
103
+ html, body, div, span, applet, object, iframe,
104
+ h1, h2, h3, h4, h5, h6, p, blockquote, pre,
105
+ a, abbr, acronym, address, big, cite, code,
106
+ del, dfn, em, img, ins, kbd, q, s, samp,
107
+ small, strike, strong, sub, sup, tt, var,
108
+ b, u, i, center,
109
+ dl, dt, dd, ol, ul, li,
110
+ fieldset, form, label, legend,
111
+ table, caption, tbody, tfoot, thead, tr, th, td,
112
+ article, aside, canvas, details, embed,
113
+ figure, figcaption, footer, header, hgroup,
114
+ menu, nav, output, ruby, section, summary,
115
+ time, mark, audio, video {
116
+ margin: 0;
117
+ padding: 0;
118
+ border: 0;
119
+ font-size: 100%;
120
+ vertical-align: baseline;
121
+ }
122
+
123
+ /* HTML5 display-role reset for older browsers */
124
+ article, aside, details, figcaption, figure,
125
+ footer, header, hgroup, menu, nav, section {
126
+ display: block;
127
+ }
128
+
129
+ body {
130
+ line-height: 1;
131
+ }
132
+
133
+ ol, ul {
134
+ list-style: none;
135
+ }
136
+
137
+ blockquote, q {
138
+ quotes: none;
139
+ }
140
+
141
+ blockquote:before, blockquote:after,
142
+ q:before, q:after {
143
+ content: "";
144
+ }
145
+
146
+ table {
147
+ border-collapse: collapse;
148
+ border-spacing: 0;
149
+ }
150
+
151
+ * {
152
+ box-sizing: border-box;
153
+ }
154
+
155
+ /**
156
+ $base-menu-color:hsla(0,0%,100%,.65);
157
+ $base-menu-color-active:#fff;
158
+ $base-menu-background:#001529;
159
+ $base-logo-title-color: #ffffff;
160
+
161
+ $base-menu-light-color:rgba(0,0,0,.70);
162
+ $base-menu-light-background:#ffffff;
163
+ $base-logo-light-title-color: #001529;
164
+
165
+ $base-sub-menu-background:#000c17;
166
+ $base-sub-menu-hover:#001528;
167
+ */
168
+ :export {
169
+ menuColor: #bfcbd9;
170
+ menuLightColor: rgba(0, 0, 0, 0.7);
171
+ menuColorActive: #f4f4f5;
172
+ menuBackground: #304156;
173
+ menuLightBackground: #ffffff;
174
+ subMenuBackground: #1f2d3d;
175
+ subMenuHover: #001528;
176
+ sideBarWidth: 200px;
177
+ logoTitleColor: #ffffff;
178
+ logoLightTitleColor: #001529;
179
+ }
180
+
181
+ .app-wrapper .main-container {
182
+ height: 100%;
183
+ transition: margin-left 0.28s;
184
+ margin-left: 200px;
185
+ position: relative;
186
+ }
187
+ .app-wrapper .sidebarHide {
188
+ margin-left: 0 !important;
189
+ }
190
+ .app-wrapper .sidebar-container {
191
+ transition: width 0.28s;
192
+ width: 200px !important;
193
+ background-color: #304156;
194
+ height: 100%;
195
+ position: fixed;
196
+ font-size: 0px;
197
+ top: 0;
198
+ bottom: 0;
199
+ left: 0;
200
+ z-index: 1001;
201
+ overflow: hidden;
202
+ box-shadow: 2px 0 6px rgba(0, 21, 41, 0.35);
203
+ }
204
+ .app-wrapper .sidebar-container .horizontal-collapse-transition {
205
+ transition: 0s width ease-in-out, 0s padding-left ease-in-out, 0s padding-right ease-in-out;
206
+ }
207
+ .app-wrapper .sidebar-container .scrollbar-wrapper {
208
+ overflow-x: hidden !important;
209
+ }
210
+ .app-wrapper .sidebar-container .el-scrollbar__bar.is-vertical {
211
+ right: 0px;
212
+ }
213
+ .app-wrapper .sidebar-container .el-scrollbar {
214
+ height: 100%;
215
+ }
216
+ .app-wrapper .sidebar-container.has-logo .el-scrollbar {
217
+ height: calc(100% - 50px);
218
+ }
219
+ .app-wrapper .sidebar-container .is-horizontal {
220
+ display: none;
221
+ }
222
+ .app-wrapper .sidebar-container a {
223
+ display: inline-block;
224
+ width: 100%;
225
+ overflow: hidden;
226
+ }
227
+ .app-wrapper .sidebar-container .svg-icon {
228
+ margin-right: 16px;
229
+ }
230
+ .app-wrapper .sidebar-container .el-menu {
231
+ border: none;
232
+ height: 100%;
233
+ width: 100% !important;
234
+ }
235
+ .app-wrapper .sidebar-container .el-menu-item, .app-wrapper .sidebar-container .el-submenu__title {
236
+ overflow: hidden !important;
237
+ text-overflow: ellipsis !important;
238
+ white-space: nowrap !important;
239
+ }
240
+ .app-wrapper .sidebar-container .submenu-title-noDropdown:hover,
241
+ .app-wrapper .sidebar-container .el-submenu__title:hover {
242
+ background-color: rgba(0, 0, 0, 0.06) !important;
243
+ }
244
+ .app-wrapper .sidebar-container .theme-dark .is-active > .el-submenu__title {
245
+ color: #f4f4f5 !important;
246
+ }
247
+ .app-wrapper .sidebar-container .nest-menu .el-submenu > .el-submenu__title, .app-wrapper .sidebar-container .el-submenu .el-menu-item {
248
+ min-width: 200px !important;
249
+ }
250
+ .app-wrapper .sidebar-container .nest-menu .el-submenu > .el-submenu__title:hover, .app-wrapper .sidebar-container .el-submenu .el-menu-item:hover {
251
+ background-color: rgba(0, 0, 0, 0.06) !important;
252
+ }
253
+ .app-wrapper .sidebar-container .theme-dark .nest-menu .el-submenu > .el-submenu__title, .app-wrapper .sidebar-container .theme-dark .el-submenu .el-menu-item {
254
+ background-color: #1f2d3d !important;
255
+ }
256
+ .app-wrapper .sidebar-container .theme-dark .nest-menu .el-submenu > .el-submenu__title:hover, .app-wrapper .sidebar-container .theme-dark .el-submenu .el-menu-item:hover {
257
+ background-color: #001528 !important;
258
+ }
259
+ .app-wrapper .hideSidebar .sidebar-container {
260
+ width: 54px !important;
261
+ }
262
+ .app-wrapper .hideSidebar .main-container {
263
+ margin-left: 54px;
264
+ }
265
+ .app-wrapper .hideSidebar .submenu-title-noDropdown {
266
+ padding: 0 !important;
267
+ position: relative;
268
+ }
269
+ .app-wrapper .hideSidebar .submenu-title-noDropdown .el-tooltip {
270
+ padding: 0 !important;
271
+ }
272
+ .app-wrapper .hideSidebar .submenu-title-noDropdown .el-tooltip .svg-icon {
273
+ margin-left: 20px;
274
+ }
275
+ .app-wrapper .hideSidebar .el-submenu {
276
+ overflow: hidden;
277
+ }
278
+ .app-wrapper .hideSidebar .el-submenu > .el-submenu__title {
279
+ padding: 0 !important;
280
+ }
281
+ .app-wrapper .hideSidebar .el-submenu > .el-submenu__title .svg-icon {
282
+ margin-left: 20px;
283
+ }
284
+ .app-wrapper .hideSidebar .el-menu--collapse .el-submenu > .el-submenu__title > span {
285
+ height: 0;
286
+ width: 0;
287
+ overflow: hidden;
288
+ visibility: hidden;
289
+ display: inline-block;
290
+ }
291
+ .app-wrapper .el-menu--collapse .el-menu .el-submenu {
292
+ min-width: 200px !important;
293
+ }
294
+ .app-wrapper .mobile .main-container {
295
+ margin-left: 0px;
296
+ }
297
+ .app-wrapper .mobile .sidebar-container {
298
+ transition: transform 0.28s;
299
+ width: 200px !important;
300
+ }
301
+ .app-wrapper .mobile.hideSidebar .sidebar-container {
302
+ pointer-events: none;
303
+ transition-duration: 0.3s;
304
+ transform: translate3d(-200px, 0, 0);
305
+ }
306
+ .app-wrapper .withoutAnimation .main-container,
307
+ .app-wrapper .withoutAnimation .sidebar-container {
308
+ transition: none;
309
+ }
310
+
311
+ .el-menu--vertical > .el-menu .svg-icon {
312
+ margin-right: 16px;
313
+ }
314
+ .el-menu--vertical .nest-menu .el-submenu > .el-submenu__title:hover,
315
+ .el-menu--vertical .el-menu-item:hover {
316
+ background-color: rgba(0, 0, 0, 0.06) !important;
317
+ }
318
+ .el-menu--vertical > .el-menu--popup {
319
+ max-height: 100vh;
320
+ overflow-y: auto;
321
+ }
322
+ .el-menu--vertical > .el-menu--popup::-webkit-scrollbar-track-piece {
323
+ background: #d3dce6;
324
+ }
325
+ .el-menu--vertical > .el-menu--popup::-webkit-scrollbar {
326
+ width: 6px;
327
+ }
328
+ .el-menu--vertical > .el-menu--popup::-webkit-scrollbar-thumb {
329
+ background: #99a9bf;
330
+ border-radius: 20px;
331
+ }