Skip to content

Commit

Permalink
Fix pointer on sidebar table
Browse files Browse the repository at this point in the history
  • Loading branch information
saulshanabrook committed Sep 30, 2021
1 parent 141f293 commit 6818e2a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/features/dataflow/Sidebar.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,16 @@
top: 0;
}

/* By default the table editor has clickable headers. Revert those to default. */
.sidebar table.editor-table th {
cursor: default;
}

/* Make rows clickable instead */
.sidebar table.editor-table tr {
cursor: pointer;
}

.active-pulse {
outline: 1px solid var(--extra-dark-gray-color);
}
Expand Down

0 comments on commit 6818e2a

Please sign in to comment.