1e5c31af7Sopenharmony_ci/* Force selection of entire .katex/.katex-display blocks, so that we can
2e5c31af7Sopenharmony_ci * copy/paste the entire source code.  If you omit this CSS, partial
3e5c31af7Sopenharmony_ci * selections of a formula will work, but will copy the ugly HTML
4e5c31af7Sopenharmony_ci * representation instead of the LaTeX source code.  (Full selections will
5e5c31af7Sopenharmony_ci * still produce the LaTeX source code.)
6e5c31af7Sopenharmony_ci */
7e5c31af7Sopenharmony_ci.katex,
8e5c31af7Sopenharmony_ci.katex-display {
9e5c31af7Sopenharmony_ci    user-select: all;
10e5c31af7Sopenharmony_ci    -moz-user-select: all;
11e5c31af7Sopenharmony_ci    -webkit-user-select: all;
12e5c31af7Sopenharmony_ci    -ms-user-select: all;
13e5c31af7Sopenharmony_ci}
14e5c31af7Sopenharmony_ci
15