copy-tex.css (477B)
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 -ms-user-select: all; 12 user-select: all; 13 } 14