mirror of
https://github.com/Smaug123/KaTeX
synced 2025-10-04 18:58:39 +00:00
* Use postcss-preset-env Closes #1946. * Remove CSS prefixes They are added by autoprefixer, if necessary.
11 lines
378 B
CSS
11 lines
378 B
CSS
/* Force selection of entire .katex/.katex-display blocks, so that we can
|
|
* copy/paste the entire source code. If you omit this CSS, partial
|
|
* selections of a formula will work, but will copy the ugly HTML
|
|
* representation instead of the LaTeX source code. (Full selections will
|
|
* still produce the LaTeX source code.)
|
|
*/
|
|
.katex,
|
|
.katex-display {
|
|
user-select: all;
|
|
}
|