mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge pull request #9559 from overleaf/jel-dash-scroll
[web] Project dashboard scrolling GitOrigin-RevId: bd427f29e411d57dbc7c5e79c79195cee664ff88
This commit is contained in:
parent
51806703b7
commit
9b09f8426d
2 changed files with 82 additions and 98 deletions
|
@ -45,19 +45,18 @@ function ProjectListPageContent() {
|
|||
<LoadingBranded loadProgress={loadProgress} />
|
||||
</div>
|
||||
) : (
|
||||
<div className="project-list-row fill">
|
||||
<div className="project-list-wrapper clearfix">
|
||||
{error ? <DashApiError /> : ''}
|
||||
{totalProjectsCount > 0 ? (
|
||||
<>
|
||||
<div className="project-list-sidebar-wrapper hidden-xs">
|
||||
<div className="project-list-sidebar-wrapper-react hidden-xs">
|
||||
<aside className="project-list-sidebar">
|
||||
<NewProjectButton id="new-project-button-sidebar" />
|
||||
<SidebarFilters />
|
||||
</aside>
|
||||
<SurveyWidget />
|
||||
</div>
|
||||
<div className="project-list-main">
|
||||
<div className="project-list-main-react">
|
||||
<Row>
|
||||
<Col xs={12}>
|
||||
<UserNotifications />
|
||||
|
@ -120,6 +119,7 @@ function ProjectListPageContent() {
|
|||
</div>
|
||||
</>
|
||||
) : (
|
||||
<div className="project-list-welcome-wrapper">
|
||||
<Row className="row-spaced">
|
||||
<Col
|
||||
xs={8}
|
||||
|
@ -131,8 +131,8 @@ function ProjectListPageContent() {
|
|||
<WelcomeMessage />
|
||||
</Col>
|
||||
</Row>
|
||||
)}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
|
|
@ -24,23 +24,13 @@
|
|||
}
|
||||
}
|
||||
|
||||
.project-list-row {
|
||||
height: 100%;
|
||||
min-height: calc(~'100vh -' @header-height);
|
||||
}
|
||||
|
||||
.project-list-wrapper {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
.project-list-sidebar-wrapper {
|
||||
float: left;
|
||||
position: static;
|
||||
width: 15%;
|
||||
min-width: 160px;
|
||||
|
||||
.project-list-sidebar-wrapper-react {
|
||||
flex: 0 0 15%;
|
||||
.project-list-sidebar {
|
||||
> .dropdown {
|
||||
width: 100%;
|
||||
|
@ -52,12 +42,12 @@
|
|||
}
|
||||
}
|
||||
|
||||
.project-list-main {
|
||||
position: static;
|
||||
overflow: auto;
|
||||
padding-left: @grid-gutter-width / 2;
|
||||
padding-right: @grid-gutter-width / 2;
|
||||
margin-left: initial;
|
||||
.project-list-welcome-wrapper {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.project-list-main-react {
|
||||
padding: @content-margin-vertical @grid-gutter-width / 2;
|
||||
}
|
||||
|
||||
ul.folders-menu {
|
||||
|
@ -574,12 +564,6 @@
|
|||
}
|
||||
}
|
||||
|
||||
.project-list-react.container,
|
||||
.project-list-react .project-list-sidebar-wrapper,
|
||||
.project-list-react .project-list-main {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.current-plan {
|
||||
vertical-align: middle;
|
||||
line-height: @line-height-base;
|
||||
|
|
Loading…
Reference in a new issue