magner
Version:
Universal admin panel magnetic to any backend
106 lines (91 loc) • 1.78 kB
CSS
.sidebar {
position: fixed;
top: 50px;
bottom: 0;
left: 0;
width: 230px;
transition: width .3s;
background-color: white;
z-index: 10;
&.collapsed {
width: 64px;
}
&:not(.open) {
@media (--breakpoint-small) {
display: none;
}
}
&_menu, & .el-scrollbar__view {
height: 100%;
}
&_item {
&.is-active {
background: #ECF5FF;
&:before {
content: "";
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 2.7px;
background: #46A0FC;
}
}
}
&_item_title {
display: inline-block;
margin-top: 2px;
margin-left: 6px;
}
& .el-sub-menu__title *, & .el-menu-item * {
vertical-align: middle;
}
& .el-icon-margin-right {
margin-right: 4px;
}
&_submenu {
&.is-active {
& .el-sub-menu__title {
color: var(--el-menu-active-color);
}
}
}
&_toggle.el-button {
position: absolute;
bottom: 20px;
right: 20px;
width: 26px;
height: 26px;
min-width: 26px;
min-height: 26px;
padding: 4px;
background: #F4F4F5;
border-radius: 2px;
border: none;
transition: right .3s;
& .icon {
width: 10px;
height: 10px;
}
@media (--breakpoint-small) {
display: none;
}
}
}
.popper-sidebar-submenu {
& .el-menu {
&-item {
height: 40px;
line-height: 40px;
& * {
vertical-align: middle;
}
}
}
}
.el-popper:not(.popper-sidebar-submenu):not(.el-dropdown__popper):not(.generic-form_item_tooltip):not(.el-picker__popper):not(.el-select__popper):not(.el-cascader__dropdown) {
background: #46A0FC ;
& .el-popper__arrow:before {
background: #46A0FC ;
}
}