fix: enabling scrolling only for reports, not for all content

This commit is contained in:
Martin Ambrus
2017-12-26 19:03:55 +01:00
parent 317e92f2f4
commit ed916d8994
+8 -1
View File
@@ -44,9 +44,12 @@ div#mid {
div#content { div#content {
float: left; float: left;
min-height: 450px; min-height: 450px;
overflow: auto; overflow: hidden;
position: relative; position: relative;
} }
div#content.reports {
overflow: auto;
}
div.universal { div.universal {
padding: 0 25px; padding: 0 25px;
width: 502px; width: 502px;
@@ -9084,4 +9087,8 @@ input.accept{width:12px;height:12px;background-image:url(../../img/a/acc.gif);}
#Frame { #Frame {
top: 0; top: 0;
z-index: 1000; z-index: 1000;
}
.reports table {
width: auto;
} }