You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
447 B

  1. /* Force selection of entire .katex/.katex-display blocks, so that we can
  2. * copy/paste the entire source code. If you omit this CSS, partial
  3. * selections of a formula will work, but will copy the ugly HTML
  4. * representation instead of the LaTeX source code. (Full selections will
  5. * still produce the LaTeX source code.)
  6. */
  7. .katex,
  8. .katex-display {
  9. -webkit-user-select: all;
  10. -moz-user-select: all;
  11. user-select: all;
  12. }