[sql-lab] make results table scroll in static container (#2426)

* only scroll result set horizontally

* only scroll results table, keep rest of ui static

* use hard coded values

* fix linting
This commit is contained in:
Alanna Scott
2017-03-21 18:30:53 -07:00
committed by GitHub
parent 65c89f54dc
commit 652e572b56
5 changed files with 61 additions and 28 deletions

View File

@@ -237,7 +237,16 @@ div.tablePopover:hover {
padding-bottom: 3px;
padding-top: 3px;
}
.ResultSet {
overflow: auto;
border-bottom: 1px solid #ccc;
}
.ResultSet table {
margin-bottom: 0px;
}
.ResultSet table tr.last {
border-bottom: none;
}
.ace_editor {
border: 1px solid #ccc;
margin: 0px 0px 10px 0px;