Roundcube Community Forum

 

latest UI change for incoming new mail

Started by ukeleleihuu, May 13, 2026, 02:53:26 PM

Previous topic - Next topic

ukeleleihuu

Hi all,

I'm not sure when or what changed exactly, but recently the UI looks different for new unread mail. It's hard to spot if there is any new mail at a glance. I use dark mode all the time. I believe there was a yellow dot by unread mail or am I misremembering things. Can I bring it back?

JohnDoh

Roundcube Plugins: Contextmenu, SpamAssassin Prefs, and more...

ukeleleihuu

I use RC through Cloudron, so I'm unsure what they use in the backend (master or wtv else there is). The thread seems old though and on my end the change happened very recently. In any case, I take it that it's impossible to have that fixed easily, right? Non-coder here BTW. Also, Cloudron apps are read-only. I can't edit the code even if I wanted.

ukeleleihuu

I posted a workaround that works locally in the browser using the Stylus plugin in Firefox. It adds a glowing green dot. You can edit the dot to be whatever you want and even specify the color.

    .messagelist td.subject span.msgicon.status.unread::before {
        content: "●";
        color:#0dff00;
        font-size: 16px;
        animation: pulseUnread 1s infinite;
    }

    @keyframes pulseUnread {
        0%   { opacity: 0.2; }
        50%  { opacity: 1; }
        100% { opacity: 0.2; }
    }