# 최신 글로 돌아가면 읽은 글이 안 읽은 것처럼 보입니다

**URL:** https://meta.discourse.org/t/read-topics-look-like-un-read-when-going-back-to-latest/377742
**Category:** UX
**Created:** [8월 7, 2025, 3:06오후 UTC](https://meta.discourse.org/t/read-topics-look-like-un-read-when-going-back-to-latest/377742 "2025-08-07T15:06:00Z")
**Posts on this page:** 1
**Showing post:** 21

<div class="post-metadata">

### Author: ![Moin](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/moin/32/554653_2.png) [@Moin](https://meta.discourse.org/u/Moin)
#### Post date: [8월 9, 2025, 9:43오후 UTC](https://meta.discourse.org/t/read-topics-look-like-un-read-when-going-back-to-latest/377742/21 "2025-08-09T21:43:13Z")

</div>

아니요!

익명 사용자를 위한 스타일링에 차이가 있습니다. 제 스크린샷에서도 확인되듯이, 앞에 `.anon`이 붙어 있고 CSS 규칙이 약간 다릅니다.

> <https://github.com/discourse/discourse/blob/df03ef6d05e2c73d02dfcb9dbba09d74310a5044/app/assets/stylesheets/desktop/latest-topic-list.scss#L50-L58>

그리고 후자는 /latest에서는 잘 작동하지만, 카테고리별 최신 주제 목록을 사용하는 /categories에서는 작동하지 않습니다.

제 포럼(버전: 2025-08-05T07:44:00Z)의 CSS는 다음과 같습니다.

 ![image](https://global.discourse-cdn.com/meta/original/4X/f/a/4/fa4fbf8c2025c15f931d678c44bcd316b2fd1ad0.png)

여러분의 사이트에서는 `.latest-topic-list-item.visited a.title:not(.badge-notification)` 선택자가 더 이상 없습니다.

 ![image](https://global.discourse-cdn.com/meta/original/4X/3/e/1/3e1e56aac3f0294b647dd4671e0f870e3826c099.png)

이것은 [UX: Fix old syntax - Pull Request #34138%EC%97%90%EC%84%9C - discourse/discourse - GitHub](https://github.com/discourse/discourse/pull/34138%EC%97%90%EC%84%9C) 제거되었습니다.

코어에서 수정될 때까지 관리자는 테마나 컴포넌트에 다음과 같은 내용을 추가할 수 있습니다.

```css
.latest-topic-list-item.visited a.title:not(.badge-notification) {
    color: var(--title-color--read);
    font-weight: var(--topic-title-font-weight--visited);
}

```

---

_[View the full topic](https://meta.discourse.org/t/read-topics-look-like-un-read-when-going-back-to-latest/377742)._
