floating-vue icon indicating copy to clipboard operation
floating-vue copied to clipboard

v-popover not displaying properly in grid layout

Open eldadts opened this issue 6 years ago • 2 comments

Hi, when trying to use v-popover in grid layout it just pushes other components and overlaying the background (if you use it) on all the rest. v-tooltip work just fine.

what can be the reason for that?

(I was using the most simple example for v-popover from the docs, again v-tooltip works just fine!)

eldadts avatar Apr 21 '18 16:04 eldadts

Do you have a minimal reproduction of the issue?

Akryum avatar May 06 '18 18:05 Akryum

I suppose it's because v-popover is wraps everything inside div.trigger with "display: inline-block;" #160 @Akryum I can make demo to reproduce this if you need.

.div-with-grid
    v-popover(
      offset="16"
      :disabled="!isEnabled")
      .div-grid-item bla bla
      .div-grid-item bla bla
      template(slot="popover")
        h1 It's popover

.div-grid-item is going to be inside div.trigger with "display: inline-block;"

ilkome avatar Dec 08 '18 18:12 ilkome