Skip to content

Commit

Permalink
Some scroll function to graph aside from zoom
Browse files Browse the repository at this point in the history
Contributes: #71
  • Loading branch information
stephanzwicknagl committed Mar 25, 2024
1 parent 211eb54 commit 9f2bebb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/lib/components/RowHeader.react.js
Expand Up @@ -44,7 +44,7 @@ export function RowHeader(props) {
return {
position: box?.top || defaultRowPosition,
opacity: rowContainer?.parentElement?.style?.opacity || 1,
zIndex: rowContainer?.parentElement.parentElement.style.zIndex || 0,
zIndex: rowContainer?.parentElement.parentElement.style.zIndex + 1|| 1,
};
}, [transformation.hash]);
const rowHeaderAttributes = findRowAttributes();
Expand Down
1 change: 1 addition & 0 deletions frontend/src/lib/components/detail.css
Expand Up @@ -11,6 +11,7 @@
/*position: fixed; !* Sit on top of the page content *!*/
top: 0;
right: 0;
overflow: auto;
}

.detail-open {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/lib/components/main.css
Expand Up @@ -2,7 +2,7 @@
body {
margin: 0;
flex-flow: column;
overflow-x: hidden;
overflow: hidden;
}

.noselect {
Expand Down

0 comments on commit 9f2bebb

Please sign in to comment.