_sidebar-theme.scss 668 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. //
  2. // Mixins: Sidebar Theme
  3. //
  4. @mixin sidebar-theme(
  5. $sidebar-bg,
  6. $sidebar-color
  7. ) {
  8. .wrapper {
  9. background: $sidebar-bg;
  10. }
  11. .main-sidebar {
  12. color: $sidebar-color;
  13. background-color: $sidebar-bg;
  14. }
  15. // Sidebar navigation menu
  16. .nav-sidebar {
  17. // All levels
  18. .nav-link {
  19. color: $sidebar-color;
  20. &:hover,
  21. .active {
  22. color: color-constract($sidebar-dark-color);
  23. }
  24. }
  25. }
  26. .sidebar-collapse:not(.layout-fixed) {
  27. .sidebar {
  28. .nav-sidebar .nav-item:hover {
  29. .nav-link:not(.active) {
  30. span {
  31. background-color: $sidebar-bg;
  32. }
  33. }
  34. }
  35. }
  36. }
  37. }
  38. //