8 votes

Bug report: My Tildes groups page isn't color coding my subscriptions properly

It's only showing ~test as orange even though I've unsubscribed to a couple of others

4 comments

  1. tjf
    (edited )
    Link
    I too noticed this . My temporary solution is a userstyle loaded with the Stylus extension. I have a rule for https://tildes.net/groups which adds the following CSS:...

    I too noticed this in Firefox (my primary desktop browser) but not in Chromium or iOS Safari. My temporary solution is a userstyle loaded with the Stylus extension. I have a rule for https://tildes.net/groups which adds the following CSS:

    .group-list-item-not-subscribed a.link-group {
        color: var(--warning-color);
    }
    

    This is the verbatim Tildes CSS rule for unsubscribed groups, but putting it in a userstyle forces it to be loaded last and not get overridden.

    Edit: This actually is an issue in all three browsers I previously mentioned. I initially didn't notice in Chromium and Safari because I did not have the non-subscribed URLs in those browsers' histories and the bug is related to the :visited pseudo-class.

    1 vote