How to change 'last visit' line color?

I have a question regarding a supposed CSS element in discourse: I was able to change the last visit text color via CSS but no matter what I’ve tried, I can’t seem to change the line color of it. It’s nowhere to be found with my eyes within inspect element. Ideas? Thanks!

x

1 Like

it might be hard to spot - search for topic-list-item-separator.

.topic-list .topic-list-item-separator td {
  border-bottom: 1px solid #ff33cc;
}
8 Likes

I had some trouble too. I have these on my notes (for a dark theme), I hope it helps a little

.topic-list .topic-list-item-separator td {
    border-bottom: 1px solid #64728c;
}

.topic-list .topic-list-item-separator td span {
    background-color: #64728c;
    color: #fff;
}

edit : a bit too late, but I leave it for the span

8 Likes

I appreciate your helpful insights and I’m sure the rest of the meta community does as well, @featheredtoast and @Steven!