diff --git a/htdocs/admin/tools/dolibarr_export.php b/htdocs/admin/tools/dolibarr_export.php index 0785b6a91cb..e95d93ddf86 100644 --- a/htdocs/admin/tools/dolibarr_export.php +++ b/htdocs/admin/tools/dolibarr_export.php @@ -160,7 +160,7 @@ $title = $langs->trans("BackupDumpWizard"); print load_fiche_titre($title); -print '
| ';
print $langs->trans("DatabaseName").' : '.$dolibarr_main_db_name.' '; @@ -569,7 +569,7 @@ print ' ';
print load_fiche_titre($title ? $title : $langs->trans("BackupZipWizard"));
-print ' ';
print '';
-print ''; +print ' '; $prefix = 'documents'; $ext = 'zip'; $file = $prefix.'_'.$dolibarr_main_db_name.'_'.dol_sanitizeFileName(DOL_VERSION).'_'.strftime("%Y%m%d%H%M"); @@ -617,7 +617,7 @@ print ' ';
+print ' ';
$filearray = dol_dir_list($conf->admin->dir_output.'/documents', 'files', 0, '', '', $sortfield, (strtolower($sortorder) == 'asc' ?SORT_ASC:SORT_DESC), 1);
$result = $formfile->list_of_documents($filearray, null, 'systemtools', '', 1, 'documents/', 1, 0, $langs->trans("NoBackupFileAvailable"), 0, $langs->trans("PreviousArchiveFiles"));
diff --git a/htdocs/theme/eldy/global.inc.php b/htdocs/theme/eldy/global.inc.php
index 1b924cf427f..ba25200c674 100644
--- a/htdocs/theme/eldy/global.inc.php
+++ b/htdocs/theme/eldy/global.inc.php
@@ -608,6 +608,9 @@ button:focus {
.fa-info-circle {
padding-: 3px;
}
+.line-height-large {
+ line-height: 1.8em;
+}
th .button {
-webkit-box-shadow: none !important;
diff --git a/htdocs/theme/md/style.css.php b/htdocs/theme/md/style.css.php
index 13b03bb5642..cbc06c26838 100644
--- a/htdocs/theme/md/style.css.php
+++ b/htdocs/theme/md/style.css.php
@@ -783,6 +783,9 @@ div.floatright
button:focus {
outline: none;
}
+.line-height-large {
+ line-height: 1.8em;
+}
th .button {
-webkit-box-shadow: none !important;
|