Skip to content

Commit

Permalink
BUGFIX: Show document tree resize icon on Safari
Browse files Browse the repository at this point in the history
The icon was not visible due to the background color of the tree component.

Resolves: #3556
  • Loading branch information
Sebobo authored and markusguenther committed Dec 16, 2023
1 parent 52665cc commit c1b6286
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
/* Node Tree is expected to be rendered inside a display: flex container - and it will take up all remaining space */
flex: 1 0 0px;
transition: var(--transition-Slow) ease height, overflow-y var(--transition-Slow);
background: var(--colors-ContrastDarker);
border-bottom: 1px solid var(--colors-ContrastDark);
border-right: 1px solid var(--colors-ContrastDark);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@
float: left;
width: var(--spacing-GoldenUnit);
}
.header {
background: var(--colors-ContrastDarkest);
}
2 changes: 2 additions & 0 deletions packages/neos-ui/src/Containers/LeftSideBar/style.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
resize: vertical;
overflow-y: auto;
z-index: 1;
background: var(--colors-ContrastDarker);
}
.leftSideBar__top--isFullHeight {
flex: 1;
Expand All @@ -57,6 +58,7 @@
flex-direction: column;
min-height: 40px;
margin-right: var(--spacing-Quarter);
background: var(--colors-ContrastDarker);
}

.leftSideBar__bottom--isCollapsed {
Expand Down

0 comments on commit c1b6286

Please sign in to comment.