Add vendor-prefixed user-select to code block line numbers

This commit is contained in:
BBaoVanC 2023-12-01 19:57:39 -06:00
parent 54e639ecc3
commit 4216b9ed6f
Signed by: bbaovanc
GPG Key ID: 18089E4E3CCF1D3A
1 changed files with 9 additions and 0 deletions

View File

@ -833,6 +833,15 @@ code {
display: block;
} /* fixes line numbers on firefox when there's only one line */
.chroma .lnt,
.chroma .ln {
/* chroma sets the non-prefixed one only */
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
/* }}} */
/* Asides {{{ */