mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -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.
|
Licensed under the MIT @license.
|
||||||
*/
|
*/
|
||||||
table.backgrid {
|
table.backgrid {
|
||||||
|
overflow: hidden;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1348,4 +1348,9 @@ height: calc(100% - 35px);
|
|||||||
.pgadmin-controls input[type="checkbox"]{
|
.pgadmin-controls input[type="checkbox"]{
|
||||||
margin-left: 0 !important;
|
margin-left: 0 !important;
|
||||||
margin-top: 10px !important;
|
margin-top: 10px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Ensure query tool results can horizontal scroll */
|
||||||
|
table.backgrid {
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user