Navigation dropdown speed

Hello. I use this code to remove the delay when pressing the dropdown button, but I wish that it still had a little bit of delay. Is that possible?
I have placed this code in the customize are of the navigation dropdown.

 $el .x-anchor, 
 $el .x-anchor-text-primary,
 $el .x-anchor-text-secondary,
 $el .x-anchor-sub-indicator,
 $el .x-dropdown {
    transform: none;
    transition-delay: unset;
    transition-duration: unset;
    transition-property: none;
    transition-timing-function: unset;
}

Hello Kiljan,

Here’s the default value:


    transform: translate3d(0, 5%, 0);
    transition-delay: 0s, 0s, 0.5s;
    transition-duration: 0.5s, 0.5s, 0s;
    transition-property: opacity, transform, visibility;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);

Please adjust it as necessary. Hope this helps.

Thanks for your quick en helpful answer!!

Glad we could help.

Cheers!

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