ember-animation / liquid-fire

Animations & transitions for ambitious Ember applications.
Other
1.15k stars 199 forks source link

Modal hidden behind navigation bar #305

Open sunocean-sand opened 9 years ago

sunocean-sand commented 9 years ago

A part of my modal is hidden behind my un-collapsed navigation bar & I don't know how to bring it to front. Has anyone encountered this problem?

Eptis commented 9 years ago

Probably has to do with the z-index value of your navigation bar which is higher than than the one from the modal.

ef4 commented 9 years ago

You can choose a z-index for the modal that is higher than its default by putting this in your own stylesheet:

.lf-overlay {
    z-index: 1000;
}