Guest User

Untitled

a guest
Oct 23rd, 2017
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. @mixin focus-with-keyboard {
  2. html[data-whatinput="keyboard"] &:focus {
  3. @content;
  4. }
  5. }
  6.  
  7. @mixin focus-without-keyboard {
  8. html[data-whatinput="initial"] &:focus,
  9. html[data-whatinput="mouse"] &:focus,
  10. html[data-whatinput="touch"] &:focus {
  11. @content;
  12. }
  13. }
  14.  
  15. @mixin focus-clear {
  16. outline: none;
  17. }
  18.  
  19. @mixin focus-clear-without-keyboard {
  20. @include focus-without-keyboard {
  21. @include focus-clear;
  22. }
  23. }
  24.  
  25. a {
  26. @include focus-clear-without-keyboard;
  27. }
  28.  
  29. .btn {
  30. @include focus-clear;
  31.  
  32. @include focus-with-keyboard {
  33. background-color: lightgray;
  34. }
  35. }
Add Comment
Please, Sign In to add comment