Skip to content

Commit

Permalink
Merge pull request #1993 from umap-project/tableeditor-input
Browse files Browse the repository at this point in the history
fix: remove padding from table editor inputs
  • Loading branch information
davidbgk authored Jul 12, 2024
2 parents 54266c7 + f5fd0eb commit 4d25929
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion umap/static/umap/css/tableeditor.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
.umap-table-editor thead {
text-align: center;
height: 48px;
line-height: 48px;
line-height: 28px;
background-color: var(--color-darkGray);
}
.umap-table-editor thead tr {
Expand All @@ -38,6 +38,9 @@
padding: 10px;
vertical-align: top;
}
.umap-table-editor td:has(input) {
padding: 0;
}
.umap-table-editor tr:nth-child(even) {
background-color: var(--color-mediumGray);
}
Expand Down

0 comments on commit 4d25929

Please sign in to comment.