Modal bug glitch

Hi there,

I noticed when I added blur filter for the modal background, the transition is not good…

How can I fix this?

Hey Peter,

Thanks for writing in! I checked your layout and I found this custom CSS:

.x-modal-bg {
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

You may need to add a transition to your custom CSS.

Be advised that custom CSS coding is beyond the scope of our support under our Support Policy. If you are unfamiliar with code and resolving potential conflicts, you may select our One service for further assistance.

Best Regards.

Hi Ruenel,

For some reason it does not work?

I tried adding:

.x-modal-bg {
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    transition-timing-function: cubic-bezier(0.4,0,0.2,1);
    transition-duration: 500ms;
    transition-property: background-color, box-shadow, opacity, filter, transform;
}

I added 500ms same like the modal background color effect duration… but it does not work? What did I do wrong

Hello Peter,

Tweak your code and try to use .x-modal on your code. Again, may I remind you that coding is beyond the scope of our support under our Support Policy. If you are unfamiliar with code and resolving potential conflicts, you may select our One service for further assistance.

Cheers.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.