mirror of
https://github.com/BBaoVanC/bobatheme.git
synced 2024-12-22 04:13:17 -06:00
Add vendor-prefixed user-select to code block line numbers
This commit is contained in:
parent
54e639ecc3
commit
4216b9ed6f
@ -833,6 +833,15 @@ code {
|
|||||||
display: block;
|
display: block;
|
||||||
} /* fixes line numbers on firefox when there's only one line */
|
} /* 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 {{{ */
|
/* Asides {{{ */
|
||||||
|
Loading…
Reference in New Issue
Block a user