mirror of
https://github.com/kiwix/kiwix-js-pwa.git
synced 2025-09-08 03:37:12 -04:00

Former-commit-id: a5e28003b55f7dce7189905d7693fac15af05eba [formerly 7a574e5b1f3c5a5a6bfa0c57f432eb0955a23d26 [formerly b785ee8c0e91e953bce3f766e3160242b56fd938]] Former-commit-id: f1a3a4db82da7b42e4328fcf5a7ace6a09bda8a8 Former-commit-id: 7da0135d81f0a3f32ecbfa1bd10996271ac15734
15 lines
494 B
CSS
15 lines
494 B
CSS
/* 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;
|
|
}
|
|
|