@lambo-design/pro-layout 1.0.0-beta.177 → 1.0.0-beta.179
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/components/search-fast.vue +22 -10
package/package.json
CHANGED
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
<Input v-if="searchType === 0" v-model="searchText" clearable id="modalInput" placeholder="搜索菜单" font-size="8px"
|
|
56
56
|
@on-change="handleInput" :border="false" @on-blur="searchSideModal= false">
|
|
57
57
|
<template #prefix>
|
|
58
|
-
<Icon type="ios-search" size="
|
|
58
|
+
<Icon type="ios-search" size="17"/>
|
|
59
59
|
</template>
|
|
60
60
|
</Input>
|
|
61
61
|
</div>
|
|
@@ -305,6 +305,14 @@ export default {
|
|
|
305
305
|
</script>
|
|
306
306
|
|
|
307
307
|
<style lang="less" >
|
|
308
|
+
@import "@lambo-design/shared/config/themes/blue/blue.less";
|
|
309
|
+
@import "@lambo-design/shared/config/themes/default/default.less";
|
|
310
|
+
@import "@lambo-design/shared/config/themes/gold/gold.less";
|
|
311
|
+
@import "@lambo-design/shared/config/themes/atrovirens/atrovirens.less";
|
|
312
|
+
@import "@lambo-design/shared/config/themes/eap/eap.less";
|
|
313
|
+
@import "@lambo-design/shared/config/themes/lime/lime.less";
|
|
314
|
+
@import "@lambo-design/shared/config/themes/orange/orange.less";
|
|
315
|
+
@import "@lambo-design/shared/config/themes/red/red.less";
|
|
308
316
|
.search-fast-con-top .ivu-tooltip-rel {
|
|
309
317
|
float: left;
|
|
310
318
|
height: 64px;
|
|
@@ -327,7 +335,7 @@ export default {
|
|
|
327
335
|
margin-top: 1px;
|
|
328
336
|
}
|
|
329
337
|
.search-fast-con-side-modal .ivu-modal-content{
|
|
330
|
-
background-color:
|
|
338
|
+
background-color: var(--menu-dark-active-bg ,@menu-dark-active-bg );
|
|
331
339
|
width: 218px;
|
|
332
340
|
margin-top: -18px;
|
|
333
341
|
height: 270px;
|
|
@@ -361,15 +369,16 @@ export default {
|
|
|
361
369
|
//background: #22262f;
|
|
362
370
|
}
|
|
363
371
|
.search-fast-con-side .ivu-input{
|
|
364
|
-
font-size:
|
|
372
|
+
font-size: 13px;
|
|
373
|
+
margin-top: -4px;
|
|
365
374
|
width: 228.5px;
|
|
366
375
|
height: 40px;
|
|
367
376
|
font-family: Microsoft YaHei;
|
|
368
377
|
font-weight: 400;
|
|
369
378
|
border: none;
|
|
370
|
-
background-color:
|
|
379
|
+
background-color: var(--legend-color ,@legend-color);//修改这里
|
|
371
380
|
text-align:left; /* 确保文本默认左对齐 */
|
|
372
|
-
color: rgba(42, 97 ,200);
|
|
381
|
+
//color: rgba(42, 97 ,200);
|
|
373
382
|
padding-right: 90px;
|
|
374
383
|
padding-left: 50px;
|
|
375
384
|
}
|
|
@@ -381,7 +390,7 @@ export default {
|
|
|
381
390
|
margin-left: -13px;
|
|
382
391
|
overflow-x: hidden;
|
|
383
392
|
overflow-y: auto;
|
|
384
|
-
background-color:
|
|
393
|
+
background-color: var(--menu-dark-active-bg ,@menu-dark-active-bg );
|
|
385
394
|
}
|
|
386
395
|
.search-fast-con-modal .ivu-modal-body{
|
|
387
396
|
height: 280px;
|
|
@@ -414,8 +423,9 @@ search-fast-con-side-modal .ivu-modal-body{
|
|
|
414
423
|
// text-align: right;
|
|
415
424
|
// }
|
|
416
425
|
.search-fast-con-side .ivu-icon-ios-search:before {
|
|
417
|
-
margin-right: -
|
|
418
|
-
color: rgba(42, 97 ,200);
|
|
426
|
+
margin-right: -33px; /* 向右移动10像素 */
|
|
427
|
+
//color: rgba(42, 97 ,200);
|
|
428
|
+
color: var(--head-bg ,@head-bg );
|
|
419
429
|
line-height: 1.6
|
|
420
430
|
}
|
|
421
431
|
.search-fast-con-top .ivu-icon-ios-search-outline:before {
|
|
@@ -430,10 +440,12 @@ search-fast-con-side-modal .ivu-modal-body{
|
|
|
430
440
|
color: rgba(255, 255, 255,0.7);
|
|
431
441
|
}
|
|
432
442
|
.search-fast-con-side .ivu-input::placeholder{
|
|
433
|
-
font-size:
|
|
443
|
+
font-size: 13px;
|
|
434
444
|
font-family: Microsoft YaHei;
|
|
435
445
|
font-weight: 400;
|
|
436
|
-
color: rgba(42, 97 ,200)!important;
|
|
446
|
+
// color: rgba(42, 97 ,200)!important;
|
|
447
|
+
color: var(--head-bg ,@head-bg ) !important;;
|
|
448
|
+
|
|
437
449
|
}
|
|
438
450
|
.search-fast-con-top .ivu-input {
|
|
439
451
|
font-size: 15px;
|