diff --git a/src/views/html.ts b/src/views/html.ts index 18cffe4d..a76fd2c2 100644 --- a/src/views/html.ts +++ b/src/views/html.ts @@ -31,6 +31,10 @@ export function getHeader(options: {withCollapsed?: boolean} = {}): string { #resultset td { padding: 5px 15px; } + + #resultset tbody tr:hover { + background-color: var(--vscode-list-hoverBackground); + } #resultset tbody tr { border-bottom: 1px solid var(--vscode-activityBar-border); diff --git a/src/views/results/html.ts b/src/views/results/html.ts index 670ca245..c21f1eae 100644 --- a/src/views/results/html.ts +++ b/src/views/results/html.ts @@ -204,9 +204,7 @@ export function generateScroller(basicSelect: string, isCL: boolean, withCancel? // Append a text node to the cell newDiv.appendChild(document.createTextNode(cell === undefined ? 'null' : cell)); } - - console.log({isJson, contentMightBeJson}) - + newCell.appendChild(newDiv); } }