Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BUGFIX: Show resize icon on safari for document tree #3581

Open
wants to merge 2 commits into
base: 8.3
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
@@ -1,9 +1,7 @@
.pageTree {
overflow-y: auto;
/* 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
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
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