Welcome to mirror list, hosted at ThFree Co, Russian Federation.

copy-tex.css « contrib « dist « katex@0.13.11 « libs « assets - gitlab.com/rmaguiar/hugo-theme-color-your-world.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f92557894b273757fef2bd580e6d963b3777a750 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* 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 {
    -webkit-user-select: all;
       -moz-user-select: all;
        -ms-user-select: all;
            user-select: all;
}