copy-tex.css 461 B

1234567891011121314
  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. user-select: all;
  10. -moz-user-select: all;
  11. -webkit-user-select: all;
  12. -ms-user-select: all;
  13. }