Skip to content

Fix project board view (#34470) #34475

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

Merged
merged 1 commit into from
May 15, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 9 additions & 17 deletions web_src/css/features/projects.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

.project-header {
padding: 0.5em 0;
overflow-x: auto; /* in fullscreen mode, the position is fixed, so we can't use "flex wrap" which would change the height */
flex-wrap: wrap;
}

.project-header h2 {
Expand Down Expand Up @@ -101,17 +101,11 @@
opacity: 0;
}

.fullscreen.projects-view .project-header {
position: fixed;
z-index: 1000;
top: 0;
left: 0;
right: 0;
padding: 0.5em;
width: 100%;
max-width: 100%;
background-color: var(--color-body);
border-bottom: 1px solid var(--color-secondary);
.fullscreen.projects-view {
position: absolute;
inset: 0;
display: flex;
flex-direction: column;
}

/* Hide project-description in full-screen due to its variable height. No need to show it for better space use. */
Expand All @@ -120,9 +114,7 @@
}

.fullscreen.projects-view #project-board {
position: absolute;
top: 60px;
left: 0;
right: 0;
max-height: calc(100vh - 70px);
flex: 1;
max-height: unset;
padding-bottom: 0.5em;
}