Empty commit

This commit is contained in:
Git 2013-03-22 08:00:23 +00:00
parent 5110d65327
commit 3916c9ffc0
2 changed files with 7 additions and 3 deletions

View File

@ -432,7 +432,7 @@ function filelist($Str) {
if(count($Reports) > 0) {
$Reported = true;
include(SERVER_ROOT.'/sections/reportsv2/array.php');
$ReportInfo = '<table><tr class="colhead_dark" style="font-weight: bold;"><td>This torrent has '.count($Reports).' active '.(count($Reports) > 1 ? "reports" : "report").':</td></tr>';
$ReportInfo = '<table class="reportinfo_table"><tr class="colhead_dark" style="font-weight: bold;"><td>This torrent has '.count($Reports).' active '.(count($Reports) > 1 ? "reports" : "report").':</td></tr>';
foreach($Reports as $Report) {
list($ReportID, $ReporterID, $ReportType, $ReportReason, $ReportedTime) = $Report;

View File

@ -433,11 +433,15 @@ tr.torrent .bookmark>a:after {
font-weight: normal;
}
/* Fix Chrome overflowing long filename tables */
/*
* Fix long filename tables overflowing (Chrome only).
* Fix report information tables overflowing long reports (all browsers).
* Fix long release descriptions overflowing containers (all browsers).
*/
.filelist_table td {
word-break: normal;
}
.filelist_table td:first-child {
.filelist_table td:first-child, .reportinfo_table, .torrentdetails blockquote {
word-break: break-all;
}