fabien-d / alertify.js

JavaScript Alert/Notification System
http://fabien-d.github.com/alertify.js/
4.26k stars 725 forks source link

"alertify.confirm" blocks mouse hover on top middle #138

Closed froehr closed 11 years ago

froehr commented 11 years ago

We got a menu with css hover on our website and after using alertify.confirm its blocked till reloading the site. It seems that alertify is just in front of it (after you choose an option, too) and so the mouseover doesn't work anymore.

fabien-d commented 11 years ago

I'm hoping to get a fix in for this shortly.

duplicate of https://github.com/fabien-d/alertify.js/issues/137

fabien-d commented 11 years ago

as a quick workaround you can add the following line in alertify.core.css if you're using 0.3.* or in alertify.css if you're using 0.4.0rc1.

I'd need to test that this doesn't create issues elsewhere, but it could be a hot fix in the meantime.

:root *> .alertify-hidden {
    display: block;
    visibility: hidden; /* <-- add this line */
}
froehr commented 11 years ago

Works well.

Thank you.