mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-09 23:54:09 -06:00
Correct the implementation of query details should be scrollable as per design.
Fixes #3827
This commit is contained in:
parent
357a020828
commit
5f9bb1c160
@ -73,6 +73,8 @@ export default class QueryHistory {
|
||||
cursor: 'ew-resize',
|
||||
});
|
||||
|
||||
$histDetails.css('overflow', 'auto');
|
||||
|
||||
this.queryHistDetails = new QueryHistoryDetails($histDetails);
|
||||
this.queryHistDetails.setEditorPref(this.editorPref);
|
||||
this.queryHistDetails.onCopyToEditorClick(this.onCopyToEditorHandler);
|
||||
|
@ -88,7 +88,7 @@
|
||||
|
||||
.sql-editor-history-container {
|
||||
height: 100%;
|
||||
overflow: auto;
|
||||
overflow: hidden;
|
||||
background-color: $negative-bg;
|
||||
}
|
||||
|
||||
@ -97,6 +97,7 @@
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
min-height: 19em;
|
||||
overflow: auto;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
background-color: $color-bg;
|
||||
@ -157,7 +158,7 @@
|
||||
flex: 5;
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
min-height: 1em;
|
||||
min-height: 4em;
|
||||
position: relative;
|
||||
|
||||
.copy-all, .was-copied, .copy-to-editor {
|
||||
|
Loading…
Reference in New Issue
Block a user