mirror of
https://github.com/umap-project/umap.git
synced 2025-04-28 19:42:36 +02:00
Merge pull request #1993 from umap-project/tableeditor-input
fix: remove padding from table editor inputs
This commit is contained in:
commit
4d2592992c
1 changed files with 4 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue