_reboot-bootstrap-dropdown.scss 636 B

12345678910111213141516171819202122232425262728293031323334353637
  1. @use '../bootstrap/init' as *;
  2. .dropdown-menu {
  3. color: $dropdown-color;
  4. svg {
  5. fill: $dropdown-color;
  6. }
  7. background-color: $dropdown-bg;
  8. }
  9. .dropdown-item {
  10. color: $dropdown-link-color;
  11. svg {
  12. fill: $dropdown-link-color;
  13. }
  14. @include hover-focus() {
  15. color: $dropdown-link-hover-color;
  16. svg {
  17. fill: $dropdown-link-hover-color;
  18. }
  19. @include gradient-bg($dropdown-link-hover-bg);
  20. }
  21. &:active,
  22. &.active,
  23. &:active:hover,
  24. &.active:hover {
  25. color: $dropdown-link-active-color;
  26. background-color: $dropdown-link-active-bg;
  27. svg {
  28. fill: $dropdown-link-active-color;
  29. }
  30. }
  31. }