diff --git a/htdocs/comm/action/peruser.php b/htdocs/comm/action/peruser.php index 0148170d316..060b4f8d7d1 100644 --- a/htdocs/comm/action/peruser.php +++ b/htdocs/comm/action/peruser.php @@ -802,7 +802,7 @@ $currentdaytoshow = $firstdaytoshow; echo '
| ';
@@ -829,7 +829,7 @@ while ($currentdaytoshow < $lastdaytoshow) {
// Filter on days
print img_picto('', 'clock', 'class="fawidth30 inline-block paddingleft"');
print ''.$langs->trans("DaysOfWeek").'';
- print "\n".' ';
+ print "\n".' ';
print '';
if (empty($conf->dol_use_jmobile)) {
print ' - ';
diff --git a/htdocs/theme/eldy/global.inc.php b/htdocs/theme/eldy/global.inc.php
index e02369fa22f..2fd4c7c966f 100644
--- a/htdocs/theme/eldy/global.inc.php
+++ b/htdocs/theme/eldy/global.inc.php
@@ -298,6 +298,9 @@ input.buttonpayment, button.buttonpayment, div.buttonpayment {
cursor: pointer;
max-width: 350px;
}
+input.short {
+ width: 40px;
+}
.nofocusvisible:focus-visible {
outline: none;
}
diff --git a/htdocs/theme/md/style.css.php b/htdocs/theme/md/style.css.php
index 0a4eb3fc5d0..c7ad8870c2e 100644
--- a/htdocs/theme/md/style.css.php
+++ b/htdocs/theme/md/style.css.php
@@ -441,6 +441,9 @@ input, select {
input.button.massactionconfirmed {
margin: 4px;
}
+input.short {
+ width: 40px;
+}
textarea {
border-radius: 0;
|