Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions src/webserver/default/amuleweb-main-dload.php
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,18 @@ function MM_nbGroup(event, grpName) { //v6.0
font-family: Helvetica;
font-size: 12px;
font-weight: normal;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
word-break: break-all;
word-wrap: break-word;
}
.texte-full-name{
max-width: 0;
width: 45%;
}
.texte-full-name-upload{
width: 55%;
}
label {
font-family:"trebuchet ms",sans-serif;
Expand Down Expand Up @@ -394,7 +406,7 @@ function my_cmp($a, $b)

echo "<td class='texte' height='22'>", '<input type="checkbox" name="', $file->hash, '" >', "</td>";

echo "<td class='texte' height='22'>", $file->short_name, "</td>";
echo "<td class='texte texte-full-name' height='22'>", $file->name, "</td>";

echo "<td class='texte' height='22' align='center'>", CastToXBytes($file->size), "</td>";

Expand Down Expand Up @@ -478,7 +490,7 @@ function CastToXBytes($size)

echo "<td class='texte' height='22' align='center'>", "</td>";

echo "<td class='texte' height='22'>", $file->short_name, "</td>";
echo "<td class='texte texte-full-name texte-full-name-upload' height='22'>", $file->name, "</td>";

echo "<td class='texte' height='22' align='center'>", $file->user_name, "</td>";

Expand Down
11 changes: 10 additions & 1 deletion src/webserver/default/amuleweb-main-search.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,15 @@ function MM_swapImage() { //v3.0
font-family: Helvetica;
font-size: 12px;
font-weight: normal;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
word-break: break-all;
word-wrap: break-word;
}
.texte-full-name{
max-width: 0;
width: 75%;
}
label {
font-family:"trebuchet ms",sans-serif;
Expand Down Expand Up @@ -311,7 +320,7 @@ function cat2idx($cat)

echo "<td class='texte'>", '<input type="checkbox" name="', $file->hash, '" >', "</td>";

echo "<td class='texte'>", $file->short_name, "</td>";
echo "<td class='texte texte-full-name'>", $file->name, "</td>";

echo "<td class='texte' align='center'>", CastToXBytes($file->size), "</td>";

Expand Down
11 changes: 10 additions & 1 deletion src/webserver/default/amuleweb-main-shared.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,15 @@ function MM_nbGroup(event, grpName) { //v6.0
font-family: Helvetica;
font-size: 12px;
font-weight: normal;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
word-break: break-all;
word-wrap: break-word;
}
.texte-full-name{
max-width: 0;
width: 45%;
}
label {
font-family:"trebuchet ms",sans-serif;
Expand Down Expand Up @@ -340,7 +349,7 @@ function my_cmp($a, $b)

echo "<td class='texte'>", '<input type="checkbox" name="', $file->hash, '" >', "</td>";

echo "<td class='texte'>", $file->short_name, "</td>";
echo "<td class='texte texte-full-name'>", $file->name, "</td>";
echo "<td class='texte' align='center'>", CastToXBytes($file->xfer), " (", CastToXBytes($file->xfer_all),")</td>";

echo "<td class='texte' align='center'>", $file->req, " (", $file->req_all, ")</td>";
Expand Down