css
This commit is contained in:
parent
874731af84
commit
7180f5eeff
@ -1542,11 +1542,11 @@ class FormFile
|
|||||||
if (empty($disablemove)) {
|
if (empty($disablemove)) {
|
||||||
$colspan++; // 6 columns or 7
|
$colspan++; // 6 columns or 7
|
||||||
}
|
}
|
||||||
print '<tr class="oddeven"><td colspan="'.$colspan.'" class="opacitymedium">';
|
print '<tr class="oddeven"><td colspan="'.$colspan.'">';
|
||||||
if (empty($textifempty)) {
|
if (empty($textifempty)) {
|
||||||
print $langs->trans("NoFileFound");
|
print '<span class="opacitymedium">'.$langs->trans("NoFileFound").'</span>';
|
||||||
} else {
|
} else {
|
||||||
print $textifempty;
|
print '<span class="opacitymedium">'.$textifempty.'</span>';
|
||||||
}
|
}
|
||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
}
|
}
|
||||||
@ -2096,8 +2096,8 @@ class FormFile
|
|||||||
print "</tr>\n";
|
print "</tr>\n";
|
||||||
}
|
}
|
||||||
if ($nboflinks == 0) {
|
if ($nboflinks == 0) {
|
||||||
print '<tr class="oddeven"><td colspan="5" class="opacitymedium">';
|
print '<tr class="oddeven"><td colspan="5">';
|
||||||
print $langs->trans("NoLinkFound");
|
print '<span class="opacitymedium">'.$langs->trans("NoLinkFound").'</span>';
|
||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
}
|
}
|
||||||
print "</table>";
|
print "</table>";
|
||||||
|
|||||||
@ -879,7 +879,7 @@ function show_projects($conf, $langs, $db, $object, $backtopage = '', $nocreatel
|
|||||||
$i++;
|
$i++;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
print '<tr class="oddeven"><td colspan="8" class="opacitymedium">'.$langs->trans("None").'</td></tr>';
|
print '<tr class="oddeven"><td colspan="8"><span class="opacitymedium">'.$langs->trans("None").'</span></td></tr>';
|
||||||
}
|
}
|
||||||
$db->free($result);
|
$db->free($result);
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@ -233,7 +233,7 @@ if ($action == 'convertimgwebp' && $permtoadd) {
|
|||||||
if (empty($action) || $action == 'editfile' || $action == 'file_manager' || preg_match('/refresh/i', $action) || $action == 'delete') {
|
if (empty($action) || $action == 'editfile' || $action == 'file_manager' || preg_match('/refresh/i', $action) || $action == 'delete') {
|
||||||
$langs->load("ecm");
|
$langs->load("ecm");
|
||||||
|
|
||||||
print '<table width="100%" class="liste noborderbottom">'."\n";
|
print '<table class="liste centpercent">'."\n";
|
||||||
|
|
||||||
print '<!-- Title for manual directories -->'."\n";
|
print '<!-- Title for manual directories -->'."\n";
|
||||||
print '<tr class="liste_titre">'."\n";
|
print '<tr class="liste_titre">'."\n";
|
||||||
|
|||||||
@ -414,7 +414,7 @@ if ($action == 'delete_section') {
|
|||||||
|
|
||||||
|
|
||||||
if (empty($action) || $action == 'file_manager' || preg_match('/refresh/i', $action) || $action == 'deletefile') {
|
if (empty($action) || $action == 'file_manager' || preg_match('/refresh/i', $action) || $action == 'deletefile') {
|
||||||
print '<table width="100%" class="liste noborderbottom">'."\n";
|
print '<table class="liste centpercent">'."\n";
|
||||||
|
|
||||||
print '<!-- Title for auto directories -->'."\n";
|
print '<!-- Title for auto directories -->'."\n";
|
||||||
print '<tr class="liste_titre">'."\n";
|
print '<tr class="liste_titre">'."\n";
|
||||||
|
|||||||
@ -1078,7 +1078,7 @@ if ($num == 0) {
|
|||||||
$colspan++;
|
$colspan++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
print '<tr><td colspan="'.$colspan.'" class="opacitymedium">'.$langs->trans("NoRecordFound").'</td></tr>';
|
print '<tr><td colspan="'.$colspan.'"><span class="opacitymedium">'.$langs->trans("NoRecordFound").'</span></td></tr>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user