Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
15 rindas
462 B
15 rindas
462 B
pirms 4 gadiem
|
/* 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;
|
||
|
}
|
||
|
|