トピック一覧のアバターを削除し、代わりにユーザー名に変更するオプションをリクエスト

トラストレベルが0-1-2の場合はグレーアウトされ、3-4の場合は色付きのユーザー名が表示されるようにしたいです。

CSSでほとんど対応できますが、スレッドに返信したときに元の投稿者のユーザー名が消えるなど、多くのバグが発生します。

トピック一覧でアバターを無効にして、より古いスタイルのフォーラムの外観にするオプションがあると嬉しいです。

他のエリアのアバターは気に入っていますが、メインのトピック一覧でのみ不要です。

こんにちは、こちらをお試しください。

// デスクトップ
.topic-list td.topic-list-data.posters {
  display: none !important;
}

// モバイル
.pull-left {
  display: none !important;
}

.topic-list .right {
  margin-left: 0 !important;
}

これにより、デスクトップとモバイルの両方でトピックリストのアバターが削除されます。

「いいね!」 1

これはアバターを削除しますが、ユーザー名は残したいです。AIに役立つかどうか試してみます。

A.I.にはこれを思いつきましたが、スレッドに誰かが返信するとユーザー名が消えてしまいます。また、投稿者のトラストレベルグループの色を調整できませんでした。

.topic-list .posters img.avatar { display: none; }
.topic-list .posters { text-align: center !important; }
.topic-list .posters a.latest.single {
  display: block;
  padding: 4px 0;
}


.topic-list .posters a.latest.single::after {
  content: attr(data-user-card);
  display: block;
  font-size: 17px;
  font-weight: normal;
  text-align: center;
}
.topic-list-header th.posters {
  text-align: center !important;
  padding: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.topic-list-header th.posters {
  padding-top: 16px !important; /* 必要に応じて値を調整 */
}


.topic-list-header th.posters::before {
  content: "Poster";
  font-size: 18px;
  font-weight: normal;
  color: #a6a6a6;
}


.topic-list .posters {
  display: flex;
  justify-content: center;
}

.topic-list th.posters,
.topic-list td.posters {
  width: 100px !important; /* 80-120px の間で調整 */
  min-width: 100px !important;
}

.topic-list .posters a.latest.single::after {
  margin-top: 10px; /* 目的の垂直位置に合わせるために値を調整 */
}

.topic-list .posters a.latest.single::after {
  text-decoration: underline transparent;
  text-underline-offset: 1px;
  transition: text-decoration-color 0.2s;
}

.topic-list .posters a.latest.single:hover::after {
  text-decoration-color: #8e0086; /* または #800080 */
}

a.latest.single {
    padding-right: 5px !important;
}


.topic-list-data.posters {
  padding: 13.5px 45px !important;  /* 上/下 8px、左/右 12px – 必要に応じて調整 */
}

.posters.topic-list-data,
.posters.topic-list-data a, {
  font-size: 17px !important;
}

.posters.topic-list-data a.latest.single {
  display: flex;
  align-items: center;
  justify-content: center;
}

.posters.topic-list-data a.latest.single::after {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.topic-list .posters a.latest.single::after {
  content: attr(data-user-card) !important;
  display: block !important;
}

//visibilty
.topic-list .posters a {
  display: none !important;
}

.topic-list .posters a.latest {
  display: inline-block !important;
}

.topic-list .posters a.latest::after {
  content: attr(data-user-card) !important;
  display: block !important;
  font-size: 17px;
  margin-top: 4px;
}

ユーザー名の色の変更の問題は、トピックリストでの表示とは別個の問題であるという印象を受けました。その問題については、こちらで議論を続けるのが良いかもしれません: Unable to change Usernames a specific color based on the group they are in