mixins.import.less 382 B

123456789101112131415161718
  1. .allowSelection {
  2. -webkit-touch-callout: initial;
  3. -webkit-user-select: initial;
  4. -khtml-user-select: initial;
  5. -moz-user-select: initial;
  6. -ms-user-select: initial;
  7. user-select: initial;
  8. }
  9. .disallowSelection {
  10. -webkit-touch-callout: none;
  11. -webkit-user-select: none;
  12. -khtml-user-select: none;
  13. -moz-user-select: none;
  14. -ms-user-select: none;
  15. user-select: none;
  16. }