Reset.less 905 B

1234567891011121314151617181920212223242526272829303132
  1. // Reset
  2. .@{prefix}-container, .@{prefix}-container *, .@{prefix}-widget, .@{prefix}-widget *, .@{prefix}-reset {
  3. margin: 0; padding: 0; border: 0; outline: 0;
  4. vertical-align: top; background: transparent;
  5. text-decoration: none; color: @text;
  6. font-family: @font-family;
  7. font-size: @font-size; text-shadow: none; float: none;
  8. position: static; width: auto; height: auto;
  9. white-space: nowrap; cursor: inherit;
  10. -webkit-tap-highlight-color: transparent;
  11. line-height: normal; font-weight: normal;
  12. text-align: left;
  13. -moz-box-sizing: content-box;
  14. -webkit-box-sizing: content-box;
  15. box-sizing: content-box;
  16. direction: ltr;
  17. max-width: none;
  18. }
  19. .@{prefix}-widget button {
  20. -moz-box-sizing: border-box;
  21. -webkit-box-sizing: border-box;
  22. box-sizing: border-box;
  23. }
  24. .@{prefix}-container *[unselectable] {
  25. -moz-user-select: none;
  26. -webkit-user-select: none;
  27. -o-user-select: none;
  28. user-select: none;
  29. }