@abi-software/map-side-bar 2.5.3-beta.17 → 2.5.3-beta.18
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
CHANGED
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
<el-popover
|
|
14
14
|
width="auto"
|
|
15
15
|
trigger="hover"
|
|
16
|
+
:teleported="false"
|
|
16
17
|
:show-after="200"
|
|
17
18
|
:persistent="false"
|
|
18
19
|
popper-class="popover-dropdown"
|
|
@@ -32,7 +33,13 @@
|
|
|
32
33
|
<div v-else>
|
|
33
34
|
<span class="empty-saved-search">No Saved Searches</span>
|
|
34
35
|
</div>
|
|
35
|
-
<el-dropdown
|
|
36
|
+
<el-dropdown
|
|
37
|
+
trigger="click"
|
|
38
|
+
:hide-on-click="false"
|
|
39
|
+
:teleported="false"
|
|
40
|
+
class="search-history-dropdown"
|
|
41
|
+
popper-class="search-history-dropdown__popper"
|
|
42
|
+
>
|
|
36
43
|
<span class="el-dropdown-select">
|
|
37
44
|
Search history
|
|
38
45
|
<el-icon class="el-icon--right">
|
|
@@ -47,6 +54,7 @@
|
|
|
47
54
|
<el-popover
|
|
48
55
|
width="auto"
|
|
49
56
|
trigger="hover"
|
|
57
|
+
:teleported="false"
|
|
50
58
|
:show-after="200"
|
|
51
59
|
:persistent="false"
|
|
52
60
|
popper-class="popover-dropdown"
|
|
@@ -69,7 +77,7 @@
|
|
|
69
77
|
<el-popover
|
|
70
78
|
width="auto"
|
|
71
79
|
trigger="hover"
|
|
72
|
-
:teleported="
|
|
80
|
+
:teleported="false"
|
|
73
81
|
:show-after="200"
|
|
74
82
|
:persistent="false"
|
|
75
83
|
popper-class="popover-dropdown"
|
|
@@ -110,7 +118,7 @@
|
|
|
110
118
|
<el-popover
|
|
111
119
|
width="auto"
|
|
112
120
|
trigger="hover"
|
|
113
|
-
:teleported="
|
|
121
|
+
:teleported="false"
|
|
114
122
|
:show-after="200"
|
|
115
123
|
:persistent="false"
|
|
116
124
|
popper-class="popover-dropdown"
|
|
@@ -422,6 +430,7 @@ export default {
|
|
|
422
430
|
align-items: center;
|
|
423
431
|
justify-content: space-between;
|
|
424
432
|
padding-bottom: 6px;
|
|
433
|
+
z-index: 2;
|
|
425
434
|
}
|
|
426
435
|
|
|
427
436
|
.empty-saved-search {
|
|
@@ -539,6 +548,10 @@ export default {
|
|
|
539
548
|
margin: 0;
|
|
540
549
|
}
|
|
541
550
|
}
|
|
551
|
+
|
|
552
|
+
:deep(.search-history-dropdown__popper) {
|
|
553
|
+
position: fixed !important;
|
|
554
|
+
}
|
|
542
555
|
</style>
|
|
543
556
|
|
|
544
557
|
<style lang="scss">
|
|
@@ -595,9 +608,11 @@ export default {
|
|
|
595
608
|
max-width: 240px;
|
|
596
609
|
font-family: Asap;
|
|
597
610
|
font-size: 12px;
|
|
611
|
+
white-space: normal;
|
|
598
612
|
word-break: break-word;
|
|
599
613
|
text-align: left;
|
|
600
614
|
color: inherit;
|
|
615
|
+
position: fixed !important;
|
|
601
616
|
background: #f3ecf6 !important;
|
|
602
617
|
border: 1px solid $app-primary-color;
|
|
603
618
|
|