Init(Core): Change repo
This commit is contained in:
62
public/assets/scss/custom/structure/_right-sidebar.scss
Normal file
62
public/assets/scss/custom/structure/_right-sidebar.scss
Normal file
@@ -0,0 +1,62 @@
|
||||
//
|
||||
// right-sidebar.scss
|
||||
//
|
||||
|
||||
.right-bar {
|
||||
background-color: $card-bg;
|
||||
box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.06), 0 1px 0 0 rgba(0, 0, 0, 0.02);
|
||||
display: block;
|
||||
position: fixed;
|
||||
transition: all 200ms ease-out;
|
||||
width: $rightbar-width;
|
||||
z-index: 9999;
|
||||
float: left !important;
|
||||
left: -($rightbar-width + 10px);
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
|
||||
.right-bar-toggle {
|
||||
background-color: lighten($dark, 7%);
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
line-height: 24px;
|
||||
color: $gray-200;
|
||||
text-align: center;
|
||||
border-radius: 50%;
|
||||
|
||||
&:hover {
|
||||
background-color: lighten($dark, 10%);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Rightbar overlay
|
||||
.rightbar-overlay {
|
||||
background-color: rgba($dark, 0.55);
|
||||
position: absolute;
|
||||
right: 0;
|
||||
left: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
display: none;
|
||||
z-index: 9998;
|
||||
transition: all .2s ease-out;
|
||||
}
|
||||
|
||||
.right-bar-enabled {
|
||||
.right-bar {
|
||||
left: 0;
|
||||
}
|
||||
.rightbar-overlay {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
@include media-breakpoint-down(sm) {
|
||||
.right-bar {
|
||||
overflow: auto;
|
||||
.slimscroll-menu {
|
||||
height: auto !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user