summaryrefslogtreecommitdiffstats
path: root/docusaurus/static/katex/contrib/copy-tex.css
blob: 90801d8428fc7b5050608d415e719be7cdea172e (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 {
    user-select: all;
    -moz-user-select: all;
    -webkit-user-select: all;
    -ms-user-select: all;
}