navs.less 684 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // Navs Flavor
  3. // --------------------------------------------------
  4. .nav-side {
  5. .box-shadow(none);
  6. }
  7. .nav-side>.list-group-item {
  8. margin-bottom: 1px;
  9. &, &:link, &:visited {
  10. background: @side-nav-bg;
  11. border: none;
  12. color: @side-nav-color;
  13. }
  14. &:hover, &:focus, &:active {
  15. background: @side-nav-hover-bg;
  16. color: @side-nav-hover-color;
  17. }
  18. &.active {
  19. &, &:link, &:visited,
  20. &:hover, &:focus, &:active {
  21. background: @side-nav-active-bg;
  22. color: @side-nav-active-color;
  23. font-weight: bold;
  24. .badge {
  25. background: @list-group-active-color;
  26. color: @list-group-active-bg;
  27. }
  28. }
  29. }
  30. }