add word-break: break-all to torrent name td
wraps text rather than making a horizontal scroll bar
This commit is contained in:
parent
aa6e6c7df5
commit
4459706e79
2 changed files with 4 additions and 1 deletions
|
|
@ -33,7 +33,7 @@
|
|||
[checked]="selectedTorrents.contains(torrent.torrentId)"
|
||||
/>
|
||||
</td>
|
||||
<td (click)="openTorrent(torrent.torrentId)">
|
||||
<td (click)="openTorrent(torrent.torrentId)" class="break-all">
|
||||
{{ torrent.rdName }}
|
||||
</td>
|
||||
<td>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,9 @@
|
|||
table {
|
||||
tr {
|
||||
cursor: pointer;
|
||||
td.break-all {
|
||||
word-break: break-all;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue