changeset 1fd07aa2bb3f in sao:default
details: https://hg.tryton.org/sao?cmd=changeset;node=1fd07aa2bb3f
description:
Set auto scroll to form-group
When there is not enough available space for the content of the group,
a scroll
bar should be used.
issue9283
review315381002
diffstat:
src/sao.less | 9 ++++++---
1 files changed, 6 insertions(+), 3 deletions(-)
diffs (19 lines):
diff -r 39d86c4cd4de -r 1fd07aa2bb3f src/sao.less
--- a/src/sao.less Fri May 01 00:24:46 2020 +0200
+++ b/src/sao.less Fri May 01 00:25:59 2020 +0200
@@ -533,9 +533,12 @@
.panel-heading {
padding: 1px 1px;
}
- fieldset.form-group_ > legend {
- font-size: @font-size-base;
- margin-bottom: 5px;
+ fieldset.form-group_ {
+ overflow: auto;
+ > legend {
+ font-size: @font-size-base;
+ margin-bottom: 5px;
+ }
}
}