djcas9 / komanda

The IRC Client For Developers
http://komanda.io
MIT License
1.78k stars 75 forks source link

Long usernames don't break properly in user list #176

Open jspautsch opened 10 years ago

jspautsch commented 10 years ago

It looks like when a username is too long it won't break it, and instead it goes to the next line, but the box doesn't resize so it overlaps the next username on the list.

image

Running Komanda 0.1.1 in Windows 7

Alex-D commented 10 years ago

Just need to apply overflow hidden + ellipsis + a title to see the entire username.

eugene-bulkin commented 10 years ago

@Alex-D do you want to submit a PR for that?

Alex-D commented 10 years ago

Yep, i can try to fix it. I just need to understood the core of the project :)

xqwzts commented 10 years ago

@Alex-D: The css responsible for the nick list is in app/styles/komanda.css, starting with line 566, I think the specific class in this case is user on line 593.

The HTML being rendered comes from the names template/partial.

Hope that helps.