We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1058f3c commit 663b8c8Copy full SHA for 663b8c8
light/src/components/select.vue
@@ -21,7 +21,7 @@
21
</span>
22
23
24
- <div :style="floatingStyles" ref="floating">
+ <div class="z-20" :style="floatingStyles" ref="floating">
25
<transition name="cl-menu">
26
<div v-if="menu" class="cl-menu">
27
<div class="cl-row" v-for="(row, i) in itemRows" :key="i">
@@ -172,10 +172,13 @@ export default defineComponent({
172
border: var(--cl-border, 1px solid #ddd);
173
background-color: var(--cl-bg-color, #eee);
174
list-style: none;
175
- z-index: 100;
176
transform-origin: top left;
177
}
178
+.z-20 {
179
+ z-index: 20;
180
+}
181
+
182
.cl-menu-enter-active,
183
.cl-menu-leave-active {
184
transition: all 0.1s ease;
0 commit comments