move help drawer to right side

This commit is contained in:
Mads Rasmussen
2018-01-25 16:37:17 +01:00
parent 5f069670aa
commit 9064d205bf
3 changed files with 13 additions and 6 deletions

View File

@@ -49,7 +49,7 @@ body {
}
body.umb-drawer-is-visible #mainwrapper{
left: @drawerWidth;
right: @drawerWidth;
}
#contentwrapper, #contentcolumn {

View File

@@ -2,11 +2,12 @@
position: fixed;
top: 0;
bottom: 0;
left: 0;
left: auto;
right: 0;
z-index: 10;
width: @drawerWidth;
background: @gray-9;
box-shadow: inset -5px 0 20px rgba(0,0,0,.3);
box-shadow: inset 5px 0 20px rgba(0,0,0,.3);
}
.umb-drawer-view {
@@ -61,6 +62,7 @@
overflow: hidden;
border-radius: 3px;
display: block;
box-shadow: 0 1px 1px 0 rgba(0,0,0,0.16);
}
.umb-help-badge:hover,
@@ -137,6 +139,7 @@
margin-bottom: 0;
background: @white;
border-radius: 3px;
box-shadow: 0 1px 1px 0 rgba(0,0,0,0.16);
}
.umb-help-list:last-child {
@@ -149,6 +152,10 @@
border-bottom: 1px solid @gray-9;
}
.umb-help-list-item:last-child {
border-bottom: none;
}
.umb-help-list-item > a,
.umb-help-list-item__content {
display: flex;