7 votes

Change group color on unsubscribe (on the groups page)

Perhaps the post was posted in the wrong place and can be moved or deleted. But it's not entirely clear.

There is a page: https://tildes.net/groups

Where is it written:

Group name colors: subscribed / not subscribed. You can change your subscription status to a group in its sidebar when you are viewing it directly.

I decided to experiment and unsubscribe from some groups. However, there are no changes on this page. Perhaps it’s just me or I’m doing something wrong.

3 comments

  1. [2]
    cfabbro
    Link
    There is actually a known issue that causes the colour of the group to remain the same regardless of whether a user is subscribed to it or not, and it may be the culprit here: :visited overriding...

    There is actually a known issue that causes the colour of the group to remain the same regardless of whether a user is subscribed to it or not, and it may be the culprit here:
    :visited overriding the "not subscribed" colour on the group browser page

    4 votes
    1. AreaDev
      Link Parent
      I looked at it. Yes, maybe that's the problem. 4307 .group-list-item-not-subscribed a.link-group { color: var(--warning-color); } Perhaps should add: .group-list-item-not-subscribed a.link-group,...

      I looked at it. Yes, maybe that's the problem.

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

      Perhaps should add:

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

      or place the code below

      ~ 4470
      .link-no-visited-color:visited {
        color: var(--link-color); }  
      

      Why I was surprised. Previously, the color changed. I even began to wonder if I had actually seen the color change here. )

      2 votes
  2. [2]
    Comment deleted by author
    Link
    1. AreaDev
      (edited )
      Link Parent
      I use: White (site and account default) I switched to another, the result is the same. Google Chrome, extensions not installed. It’s strange. I don't see any errors in the browser console. P.S....

      I use: White (site and account default)

      I switched to another, the result is the same. Google Chrome, extensions not installed. It’s strange.

      I don't see any errors in the browser console.

      P.S. Perhaps a really browser. There is a group-list-item-not-subscribed in there. And the color is transmitted.

      .group-list-item-not-subscribed a.link-group
      

      When add !Important in the browser, the behavior changes.

      color: var(--warning-color) !important;
      

      I will sort this out. I hurried to create a topic. )

      1 vote