Skip to content

Commit

Permalink
Fix light theme table header background color (#176)
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbyiliev authored Dec 1, 2024
1 parent 149e031 commit 1543ff9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/providers/scripts/results.ts
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,8 @@ import {
// Create the header row
const headerRow = document.createElement("vscode-data-grid-row");
headerRow.setAttribute("row-type", "header");
headerRow.style.backgroundColor = "#232323";
headerRow.style.backgroundColor = "var(--vscode-editor-selectionBackground)";
headerRow.style.fontWeight = "600";

// Create and append the header cells
fields.forEach(({name: field}: { name: string }, fi: number) => {
Expand Down

0 comments on commit 1543ff9

Please sign in to comment.