• Resolved armreu

    (@armreu)


    Hi! I am wondering if there is any way to adjust the time how long error messages are displayed.

    For example when entering wrong account data, not clicking captcha and stuff like that. Currently the message disappears automatically after around 3 seconds.

    I am asking because automatically disappearing error messages are a problem when it comes to accessibility.

    Kind regards from Germany!

    Armin

Viewing 1 replies (of 1 total)
  • Plugin Author Javier Carazo

    (@carazo)

    @armreu,

    You have this in the CSS, you can override it using your own CSS:

    .cleanlogin-notification {
        -moz-animation: cssAnimation 0s ease-in 5s forwards;
        -webkit-animation: cssAnimation 0s ease-in 5s forwards;
        -o-animation: cssAnimation 0s ease-in 5s forwards;
        animation: cssAnimation 0s ease-in 5s forwards;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }

    Now you have 5s, you can change it.

Viewing 1 replies (of 1 total)
  • The topic ‘Option to change time how long messages are display’ is closed to new replies.