Fix layout on long torrent names (#23) (For now)

* Fix layout on long torrent names

before: http://i.imgur.com/cI1pZrF.png
after: http://i.imgur.com/BIC722K.png

* change space to tab
This commit is contained in:
Ricardo Ribeiro 2017-05-13 18:26:03 +01:00 committed by A nyaa developer
parent 7420e94318
commit 4571b55fc9
1 changed files with 4 additions and 0 deletions

View File

@ -11,6 +11,10 @@
.torrent-list > tbody > tr > td {
vertical-align: middle;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 603px; /*Will this break something?*/
}
table.torrent-list thead th {