logo

searx

My custom branche(s) on searx, a meta-search engine git clone https://hacktivis.me/git/searx.git

mixins.less (559B)


  1. /*
  2. * searx, A privacy-respecting, hackable metasearch engine
  3. */
  4. // Mixins
  5. .text-size-adjust (@property: 100%) {
  6. -webkit-text-size-adjust: @property;
  7. -ms-text-size-adjust: @property;
  8. -moz-text-size-adjust: @property;
  9. text-size-adjust: @property;
  10. }
  11. .rounded-corners (@radius: 4px) {
  12. -webkit-border-radius: @radius;
  13. -moz-border-radius: @radius;
  14. border-radius: @radius;
  15. }
  16. .user-select () {
  17. -webkit-touch-callout: none;
  18. -webkit-user-select: none;
  19. -khtml-user-select: none;
  20. -moz-user-select: none;
  21. -ms-user-select: none;
  22. user-select: none;
  23. }