_forms.scss 408 B

123456789101112131415161718192021
  1. input[type="text"],
  2. input[type="email"],
  3. input[type="url"],
  4. input[type="password"],
  5. input[type="search"],
  6. input[type="number"],
  7. input[type="tel"],
  8. input[type="range"],
  9. input[type="date"],
  10. input[type="month"],
  11. input[type="week"],
  12. input[type="time"],
  13. input[type="submit"],
  14. input[type="datetime"],
  15. input[type="datetime-local"],
  16. input[type="color"],
  17. textarea {
  18. &:focus {
  19. outline: 1px dotted currentColor;
  20. }
  21. }