Reset.less 887 B

12345678910111213141516171819202122232425262728293031
  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. }
  18. .@{prefix}-widget button {
  19. -moz-box-sizing: border-box;
  20. -webkit-box-sizing: border-box;
  21. box-sizing: border-box;
  22. }
  23. .@{prefix}-container *[unselectable] {
  24. -moz-user-select: none;
  25. -webkit-user-select: none;
  26. -o-user-select: none;
  27. user-select: none;
  28. }