diff --git a/htdocs/core/class/html.formfile.class.php b/htdocs/core/class/html.formfile.class.php
index 4c354b66107..7156524a89c 100644
--- a/htdocs/core/class/html.formfile.class.php
+++ b/htdocs/core/class/html.formfile.class.php
@@ -1128,7 +1128,7 @@ class FormFile
{
// Delete or view link
// ($param must start with &)
- print '
';
+ print ' | ';
if ($useinecm == 1)
{
print ''.img_view('default', 0, 'class="paddingrightonly"').'';
diff --git a/htdocs/theme/eldy/style.css.php b/htdocs/theme/eldy/style.css.php
index fb9b9724114..dce3318d1da 100644
--- a/htdocs/theme/eldy/style.css.php
+++ b/htdocs/theme/eldy/style.css.php
@@ -398,6 +398,9 @@ td.onholidaymorning, td.onholidayafternoon {
td.onholidayallday {
background-color: #f4eede;
}
+td.actionbuttons a {
+ padding-left: 6px;
+}
select.flat, form.flat select {
font-weight: normal;
}
diff --git a/htdocs/theme/md/style.css.php b/htdocs/theme/md/style.css.php
index 92f5f44b64f..266444516f6 100644
--- a/htdocs/theme/md/style.css.php
+++ b/htdocs/theme/md/style.css.php
@@ -405,7 +405,9 @@ td.onholidaymorning, td.onholidayafternoon {
td.onholidayallday {
background-color: #f4eede;
}
-
+td.actionbuttons a {
+ padding-left: 6px;
+}
select.flat, form.flat select {
font-weight: normal;
}
|