You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
721 B

10 years ago
10 years ago
  1. /*
  2. * # Semantic - Reset
  3. * http://github.com/semantic-org/semantic-ui/
  4. *
  5. *
  6. * Copyright 2014 Contributor
  7. * Released under the MIT license
  8. * http://opensource.org/licenses/MIT
  9. *
  10. */
  11. /*******************************
  12. Theme
  13. *******************************/
  14. @type : 'global';
  15. @element : 'reset';
  16. @import '../../semantic.config';
  17. /*******************************
  18. Reset
  19. *******************************/
  20. /* Border-Box */
  21. *,
  22. *:before,
  23. *:after {
  24. box-sizing: border-box;
  25. }
  26. /* iPad Input Shadows */
  27. input[type="text"], input[type="email"], input[type="search"], input[type="password"] {
  28. -webkit-appearance: none;
  29. -moz-appearance: none; /* mobile firefox too! */
  30. }
  31. .loadUIOverrides();