Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Force LeftPanel to avoid scrolling on small lists (fix #1081)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdujeu committed Mar 15, 2016
1 parent de1a404 commit a232f4c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Expand Up @@ -253,7 +253,7 @@
ref={paneData.id}
title={title}
elementHeight={36}
heightAutoWithMax={400}
heightAutoWithMax={4000}
nodeClicked={this.props.nodeClicked}
presetDataModel={this.state.dataModel}
reloadOnServerMessage={paneData.options['reloadOnServerMessage']}
Expand Down
Expand Up @@ -135,7 +135,7 @@
.simple-provider{
position: relative;
.infinite-parent-smooth-height > div{
-ms-overflow-y: auto !important;
overflow-y: auto !important;
}
.material-list-entry{
.nav-list-entry();
Expand Down
4 changes: 2 additions & 2 deletions core/src/plugins/gui.ajax/res/themes/orbit/css/pydio.css
Expand Up @@ -4064,7 +4064,7 @@ div.menu.rootDirChooser span.rootDirTitle {
-webkit-font-smoothing: antialiased;
font-size: 13px;
color: rgba(255, 255, 255, 0.92);
overflow-y: scroll;
overflow-y: auto;
box-sizing: border-box;
-webkit-transition: all 550ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
transition: all 550ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
Expand Down Expand Up @@ -4187,7 +4187,7 @@ div.menu.rootDirChooser span.rootDirTitle {
position: relative;
}
.left-panel .simple-provider .infinite-parent-smooth-height > div {
-ms-overflow-y: auto !important;
overflow-y: auto !important;
}
.left-panel .simple-provider .material-list-entry {
padding: 6px 1px 6px 16px;
Expand Down

0 comments on commit a232f4c

Please sign in to comment.