Using CSS3 Pie with jQuery BlockUI

I use CSS3 Pie to execute a cross browser with border radius and boxed shadows. This works great. But when used with the jQuery plugU blockUI (using modal dialogs), the CSS3 Pie function does not apply to this dialog element.

This is due to a z-index problem with the: fixed position, which is also described here . I already tried changing the position to relative on the target element by playing with z-index, but it will not work.

Perhaps one of you has had a similar problem and you can help me here.

+3
source share
1 answer

What version of CSS3Pie are you using?

I don't know how blockUI works, but it is possible that it hides its pop-ups from the top of the screen or something like that until they are used.

If so, and if you are using the first version of CSS3Pie (beta 1), there was an error in this version that triggered a Javascript error when trying to access an element with a negative position. This bug has been fixed in beta 2.

If you are using beta 1, you must return to the CSS3Pie site and install beta 2.

Finally, you asked on the CSS3Pie website - the forums are quite active, and the developer himself answers many questions.

If it still doesn't work, I find it pretty close to releasing the third beta pretty soon.

+2
source

Source: https://habr.com/ru/post/1765089/


All Articles