mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-27 16:57:00 -06:00
A more appropriate fix for RM1362 - horizontal scrolling of query results.
This commit is contained in:
parent
71ec9ef914
commit
0e11f4d082
@ -6,6 +6,7 @@
|
||||
Licensed under the MIT @license.
|
||||
*/
|
||||
table.backgrid {
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user