Merge pull request #760 from Cucumberrbob/fix/word-break-long-torrent-names
add `word-break: break-all` to torrent name `td`
This commit is contained in:
commit
7340fb3183
2 changed files with 4 additions and 1 deletions
|
|
@ -33,7 +33,7 @@
|
||||||
[checked]="selectedTorrents.contains(torrent.torrentId)"
|
[checked]="selectedTorrents.contains(torrent.torrentId)"
|
||||||
/>
|
/>
|
||||||
</td>
|
</td>
|
||||||
<td (click)="openTorrent(torrent.torrentId)">
|
<td (click)="openTorrent(torrent.torrentId)" class="break-all">
|
||||||
{{ torrent.rdName }}
|
{{ torrent.rdName }}
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,9 @@
|
||||||
table {
|
table {
|
||||||
tr {
|
tr {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
td.break-all {
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue