Skip to content

Commit

Permalink
hide the first data table row selector column display for now (#89)
Browse files Browse the repository at this point in the history
until save options are implemented
  • Loading branch information
RandomFractals committed Aug 5, 2021
1 parent 60a9dde commit ae8a59a
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/renderer/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,18 +34,25 @@ tbody tr:hover {
background-color: var(--vscode-editor-background) !important;
}

/* data table row selector column */
.data-table form table thead th:first-child,
.data-table form table tr td:first-child {
display: none;
}

/* apply spacing to sort symbol in table header */
thead th span {
/* Sorting triangle symbol in table header */
margin-left: 0 !important;
padding-right: 0.4rem;
}

/* table column header bottom border */
thead th {
box-shadow: 0 1px 0 var(--vscode-panel-border) !important;
}

/* table column header text align and cursor */
th {
text-align: left !important;
cursor: pointer !important;
}

0 comments on commit ae8a59a

Please sign in to comment.