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 {
float: left;
min-height: 450px;
overflow: auto;
overflow: hidden;
position: relative;
}
div#content.reports {
overflow: auto;
}
div.universal {
padding: 0 25px;
width: 502px;
@@ -9084,4 +9087,8 @@ input.accept{width:12px;height:12px;background-image:url(../../img/a/acc.gif);}
#Frame {
top: 0;
z-index: 1000;
}
.reports table {
width: auto;
}