sidebar.scss 1.4 KB
Newer Older
P
Pan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
// 侧边栏
.sidebar-container>.el-menu {
  width: 100%!important;
}

.sidebar-container .svg-icon {
  margin-right: 16px;
}

.hideSidebar .svg-icon {
  margin-right: 0;
}

.hideSidebar .submenu-title-noDropdown span,
.hideSidebar .el-submenu>.el-submenu__title span {
  height: 0;
  width: 0;
  overflow: hidden;
  visibility: hidden;
  display: inline-block;
}

.hideSidebar .nest-menu .el-submenu__title {
  text-align: initial!important;
  span {
    height: auto;
    width: auto;
    visibility: visible;
  }
  .el-submenu__icon-arrow {
    display: block!important;
  }
}

.hideSidebar .menu-wrapper>.el-menu-item,
.hideSidebar .submenu-title-noDropdown,
.hideSidebar .menu-wrapper>.el-submenu .el-submenu__title {
  text-align: center;
}

.hideSidebar .el-menu-item .el-submenu__icon-arrow,
.hideSidebar .el-submenu .el-submenu__title .el-submenu__icon-arrow {
  display: none;
}

.hideSidebar .submenu-title-noDropdown {
  position: relative;
  span {
    transition: opacity .3s cubic-bezier(.55, 0, .1, 1);
    opacity: 0;
  }
  &:hover {
    span {
      display: block;
      border-radius: 3px;
      z-index: 1002;
      width: 140px;
      height: 56px;
      visibility: visible;
      position: absolute;
      right: -145px;
      top: 0px;
      background-color: #1f2d3d;
      opacity: 1;
    }
  }
}

.el-submenu .el-menu-item {
  min-width: 180px!important;
}