No option built-in, you could do something like this to add a simple pulse effect. Add to extra.less:

Code:
.message-avatar-online:before
{
    box-shadow: 0 0 0 0 rgba(127, 185, 0, 22%);
    -webkit-animation: pulse 1.5s infinite;
}
@-webkit-keyframes pulse
{
    70%
    {
        box-shadow: 0 0 0 20px rgba(90, 153, 212, 0);
    }
    100%
    {
        box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
    }
}
 

Pre-Sale Questions

If you have any questions or concerns you want to ask before you make a purchase don't hesitate to use one of our multiple support channels for your convenience.

Back