A more appropriate fix for RM1362 - horizontal scrolling of query results.

This commit is contained in:
Surinder Kumar 2016-06-15 11:59:20 +01:00 committed by Dave Page
parent 71ec9ef914
commit 0e11f4d082
2 changed files with 7 additions and 1 deletions

View File

@ -6,6 +6,7 @@
Licensed under the MIT @license.
*/
table.backgrid {
overflow: hidden;
position: relative;
}

View File

@ -1348,4 +1348,9 @@ height: calc(100% - 35px);
.pgadmin-controls input[type="checkbox"]{
margin-left: 0 !important;
margin-top: 10px !important;
}
}
/* Ensure query tool results can horizontal scroll */
table.backgrid {
overflow: auto;
}