HTML Tree: Fix column separators misaligned at startup. Closes #2153

This commit is contained in:
Adomas Venčkauskas 2021-08-24 12:42:57 +03:00
parent d4e3a437fd
commit 6010390525
3 changed files with 14 additions and 8 deletions

View file

@ -1084,10 +1084,13 @@ class VirtualizedTable extends React.Component {
const header = document.querySelector(`#${this.props.id} .virtualized-table-header`);
const scrollbarWidth = Math.max(0,
tree.getBoundingClientRect().width - jsWindow.getBoundingClientRect().width);
let paddingWidth = 0;
if (Zotero.isLinux) {
paddingWidth = 2; // from the border
}
// Should be kept up to date with the _virtualized-table.scss value
// for .virtualized-table-header
const paddingInlineStart = 6;
header.style.width = `calc(100% - ${scrollbarWidth+paddingInlineStart}px)`;
header.style.width = `calc(100% - ${scrollbarWidth-paddingWidth}px)`;
}
/**

View file

@ -87,7 +87,11 @@ function makeItemRenderer(itemTree) {
// Set depth indent
const depth = itemTree.getLevel(index);
span.style.paddingInlineStart = (CHILD_INDENT * depth) + 'px';
let firstChildIndent = 0;
if (column.ordinal == 0) {
firstChildIndent = 6;
}
span.style.paddingInlineStart = ((CHILD_INDENT * depth) + firstChildIndent) + 'px';
return span;
}

View file

@ -38,6 +38,10 @@
cursor: col-resize;
}
}
.cell:first-child {
padding-inline-start: 6px;
}
.cell {
min-width: 30px;
@ -142,7 +146,6 @@
height: 1.8em;
overflow: hidden;
border-inline-end: 1px solid #ddd;
padding-inline-start: 6px;
&.static-columns {
pointer-events: none;
@ -212,10 +215,6 @@
max-width: 100%;
overflow: auto;
.row {
padding-inline-start: 6px;
}
.cell {
padding: 2px 5px;
text-overflow: ellipsis;