fixes: U4-11171 Tree panel doesn't vertically scroll

This commit is contained in:
Mads Rasmussen
2018-04-09 15:00:52 +02:00
parent c5f27aeea5
commit dfcb93abf9
4 changed files with 26 additions and 18 deletions

View File

@@ -62,10 +62,6 @@ body.umb-drawer-is-visible #mainwrapper{
margin: 0
}
#contentwrapper {
top: @appHeaderHeight;
}
#umb-notifications-wrapper {
left: 80px;
}
@@ -87,7 +83,7 @@ body.umb-drawer-is-visible #mainwrapper{
z-index: 1100;
float: left;
position: absolute;
top: @appHeaderHeight;
top: 0;
}
#navigation {
@@ -98,17 +94,16 @@ body.umb-drawer-is-visible #mainwrapper{
z-index: 100;
background: @white;
height: 100%;
}
.navigation-inner-container{
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
border-right: 1px solid @gray-9;
z-index: 100;
.navigation-inner-container {
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
border-right: 1px solid @gray-9;
z-index: 100;
}
#dialog {
@@ -124,6 +119,7 @@ body.umb-drawer-is-visible #mainwrapper{
padding: 0px;
z-index: 100 !important;
overflow: auto;
height: 100%;
}
#tree .umb-tree {

View File

@@ -82,6 +82,7 @@
// Umbraco Components
@import "components/application/umb-app-header.less";
@import "components/application/umb-app-content.less";
@import "components/application/umb-tour.less";
@import "components/application/umb-backdrop.less";
@import "components/application/umb-drawer.less";

View File

@@ -0,0 +1,7 @@
.umb-app-content {
position: absolute;
top: @appHeaderHeight;
right: 0;
bottom: 0;
left: 0;
}