index.scss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. .cl-slider-menu {
  2. height: 100%;
  3. overflow-y: auto;
  4. &::-webkit-scrollbar {
  5. width: 0;
  6. height: 0;
  7. }
  8. .el-menu {
  9. border-right: 0;
  10. background-color: $color-main;
  11. &-item {
  12. &.is-active {
  13. background-color: $color-primary;
  14. color: #fff;
  15. }
  16. }
  17. .el-submenu__title,
  18. .el-menu-item {
  19. &:hover {
  20. background-color: $color-primary;
  21. }
  22. }
  23. .el-submenu {
  24. &.is-opened {
  25. background-color: #2b3043;
  26. .el-menu {
  27. background-color: #2b3043;
  28. }
  29. }
  30. }
  31. .el-submenu__title,
  32. &-item,
  33. &__title {
  34. color: #eee;
  35. letter-spacing: 0.5px;
  36. height: 50px;
  37. line-height: 50px;
  38. .icon-svg {
  39. font-size: 16px;
  40. margin: 0 15px 0 5px;
  41. position: relative;
  42. }
  43. span {
  44. font-size: 12px;
  45. letter-spacing: 1px;
  46. display: inline-block;
  47. }
  48. }
  49. &--collapse {
  50. .el-submenu__title {
  51. .icon-svg {
  52. margin-left: 2px;
  53. font-size: 19px;
  54. }
  55. }
  56. }
  57. }
  58. }
  59. .el-menu {
  60. &--vertical {
  61. .el-submenu {
  62. &__title {
  63. display: flex;
  64. align-items: center;
  65. .icon-svg {
  66. font-size: 18px;
  67. margin-right: 10px;
  68. }
  69. }
  70. }
  71. .el-menu-item {
  72. display: flex;
  73. align-items: center;
  74. .icon-svg {
  75. font-size: 18px;
  76. margin-right: 10px;
  77. }
  78. }
  79. }
  80. }