Merge pull request #1993 from umap-project/tableeditor-input

fix: remove padding from table editor inputs
This commit is contained in:
David Larlet 2024-07-12 18:11:11 -04:00 committed by GitHub
commit 4d2592992c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 {
@ -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);
}