Skip to content

Commit ae8a59a

Browse files
hide the first data table row selector column display for now (#89)
until save options are implemented
1 parent 60a9dde commit ae8a59a

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

src/renderer/styles.css

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,18 +34,25 @@ tbody tr:hover {
3434
background-color: var(--vscode-editor-background) !important;
3535
}
3636

37+
/* data table row selector column */
38+
.data-table form table thead th:first-child,
39+
.data-table form table tr td:first-child {
40+
display: none;
41+
}
42+
43+
/* apply spacing to sort symbol in table header */
3744
thead th span {
38-
/* Sorting triangle symbol in table header */
3945
margin-left: 0 !important;
4046
padding-right: 0.4rem;
4147
}
4248

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

54+
/* table column header text align and cursor */
4755
th {
4856
text-align: left !important;
4957
cursor: pointer !important;
5058
}
51-

0 commit comments

Comments
 (0)