您最多能選擇 25 個主題
主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。
14 行
462 B
14 行
462 B
/* 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;
|
|
}
|
|
|
|
|