pierrickrouxel / ember-strap

DEPRECATED IN FAVOR OF https://github.com/kaliber5/ember-bootstrap
MIT License
15 stars 3 forks source link

Flickering effect when using popover #1

Closed HenryVonfire closed 9 years ago

HenryVonfire commented 9 years ago

Hi!

I was doing some tests to see if this add-on was suitable for me and I realized that adding to the popover component a mode="hover" makes the popover behave in a continuous flickering.

edit: to be more specific, it happens when you move quickly the mouse over the button.

pierrickrouxel commented 9 years ago

Hello, I will try that quickly. Thanks

HenryVonfire commented 9 years ago

Actually, this CSS code seems to solve the problem:

.fade {
   opacity: 0;
   -webkit-transition: opacity 0s linear;
      -moz-transition: opacity 0s linear;
       -ms-transition: opacity 0s linear;
        -o-transition: opacity 0s linear;
           transition: opacity 0s linear;
 }
pierrickrouxel commented 9 years ago

Works for me. Can you try it?

HenryVonfire commented 9 years ago

Yes, now works perfectly!