_hover.scss 275 B

12345678910111213141516171819202122232425262728
  1. @mixin hover() {
  2. &:hover { @content; }
  3. }
  4. @mixin hover-focus() {
  5. &:hover,
  6. &:focus {
  7. @content;
  8. }
  9. }
  10. @mixin plain-hover-focus() {
  11. &,
  12. &:hover,
  13. &:focus {
  14. @content;
  15. }
  16. }
  17. @mixin hover-focus-active() {
  18. &:hover,
  19. &:focus,
  20. &:active {
  21. @content;
  22. }
  23. }