/AppLanding/js/vendor/lesshat/mixins/user-select/user-select.md

https://gitlab.com/webocalypse/themes · Markdown · 26 lines · 18 code · 8 blank · 0 comment · 0 complexity · e8be968d26cefceab6a867022ca61dc8 MD5 · raw file

  1. ### <a name="user-select"></a> &#8226; user-select
  2. **Summary:**
  3. Controls the appearance (only) of selection.
  4. Resources: **[MDN](https://developer.mozilla.org/en-US/docs/Web/CSS/user-select)**
  5. **Syntax:**
  6. Default value: auto
  7. .user-select(none | text | all | element)
  8. **Example:**
  9. div {
  10. .user-select(none);
  11. }
  12. // Result
  13. div {
  14. -webkit-user-select: none;
  15. -moz-user-select: none;
  16. -ms-user-select: none;
  17. user-select: none;
  18. }