fabien-d / alertify.js

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

:root *>.alertify-hidden set to display: block insted of display: none #140

Closed eilders closed 11 years ago

eilders commented 11 years ago

Shouldn't

:root *>.alertify-hidden{display:block}

be set to:

:root *>.alertify-hidden{display:none}

This is causing the code to hang around and any link or navigation under it can't be clicked.

I'm using 0.3.9

fabien-d commented 11 years ago

duplicate of #138.

Setting it to display: none prevents the CSS animation from running. A temporary workaround is to add visibility: hidden;.

Will be looking for a better solution.

eilders commented 11 years ago

Appreciate the quick response and workaround.

Apologize for the duplicate.