mirror of
https://github.com/zadam/trilium.git
synced 2025-06-06 09:58:32 +02:00
Merge pull request #3650 from eliandoran/fix/vertical_align_table_cells
Centered vertical align does not seem to work on merged table cells
This commit is contained in:
commit
ae6f2624a0
@ -13,4 +13,11 @@
|
|||||||
.relation-map-wrapper {
|
.relation-map-wrapper {
|
||||||
height: 100vh !important;
|
height: 100vh !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.table thead th,
|
||||||
|
.table td, .table th {
|
||||||
|
/* Fix center vertical alignment of table cells */
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -990,3 +990,9 @@ button.close:hover {
|
|||||||
textarea {
|
textarea {
|
||||||
cursor: auto;
|
cursor: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.table thead th,
|
||||||
|
.table td, .table th {
|
||||||
|
/* Fix center vertical alignment of table cells */
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user