LemmyNet / lemmyBB

A federated bulletin board

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[Feature]: line break latest reply

Tealk opened this issue · comments

commented

Is your proposal related to a problem?

long entry names are displayed in multiple lines.
image

Describe the solution you'd like

shorten the post names via css

Describe alternatives you've considered

No response

Additional context

image

a.lastsubject {
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 235px;
}