changeset 88a6e5db8b62 in sao:default
details: https://hg.tryton.org/sao?cmd=changeset;node=88a6e5db8b62
description:
Set minimal width of input in ch
Mixing width in em and ch for the number input creates an overflow on
the
group.
issue9706
review318481002
diffstat:
src/sao.less | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (22 lines):
diff -r 1f32f466dd68 -r 88a6e5db8b62 src/sao.less
--- a/src/sao.less Sun Oct 18 15:58:43 2020 +0200
+++ b/src/sao.less Wed Oct 21 23:13:32 2020 +0200
@@ -516,15 +516,15 @@
.form-multiselection, .form-url, .form-email, .form-callto, .form-sip,
.form-pyson {
input, select {
- min-width: 8em;
+ min-width: 8ch;
}
}
.form-many2one, .form-one2one, .form-reference, form-binary {
select {
- min-width: 8em;
+ min-width: 8ch;
}
input {
- min-width: 12em;
+ min-width: 12ch;
}
}