_nav-pills.scss 551 B

1234567891011121314151617181920212223242526272829
  1. // NAV PILLS
  2. // -----------------------------------------------------------------------------
  3. /* Buttons - States */
  4. @each $state in $states {
  5. .nav-pills-#{nth($state,1)} {
  6. > li {
  7. a:hover,
  8. a:focus {
  9. color: nth($state,2);
  10. @if nth($state,1) == 'primary' {
  11. background-color: lighten(nth($state,2), 50%);
  12. } @else {
  13. background-color: lighten(adjust-hue(nth($state,2), -5), 35%);
  14. }
  15. }
  16. }
  17. > li.active {
  18. > a {
  19. &,
  20. &:hover,
  21. &:active,
  22. &:focus {
  23. background-color: nth($state,2);
  24. }
  25. }
  26. }
  27. }
  28. }