Add issue12618.diff [sao] Wrap long label to 80 chars

#161626
This commit is contained in:
Raimon Esteve 2023-10-25 15:11:19 +02:00
parent aa91b072f1
commit e226bf4a38
2 changed files with 17 additions and 0 deletions

15
issue12618.diff Normal file
View File

@ -0,0 +1,15 @@
diff --git a/tryton/sao/src/sao.less b/tryton/sao/src/sao.less
index 0a75ad803e..ece787b133 100644
--- a/tryton/sao/src/sao.less
+++ b/tryton/sao/src/sao.less
@@ -635,7 +635,9 @@ img.icon {
padding-right: 0px;
}
td.form-label {
- white-space: pre;
+ white-space: pre-wrap;
+ width: max-content;
+ max-width: 80ch;
}
.form-char, .form-password, .form-integer, .form-float, .form-date,
.form-datetime, .form-time, .form-timedelta, .form-selection,

2
series
View File

@ -61,3 +61,5 @@ issue7672.diff # [stock] Always fill product and template of cost price revision
issue12570.diff # [account] Do not compute account party for general ledger line without party
issue12590.diff # [account_payment] Do not test active clause of dunning being in a set
issue12618.diff # [sao] Wrap long label to 80 chars