Skip to content

Commit 3276dd1

Browse files
Prevent accidental mouse selection of code line numbers (#201)
* Prevent accidental mouse selection of code line numbers People often copy&paste code/text from code boxes with a mouse. In the former CSS the selection of line numbers happened too often because the line numbers had CSS padding on the right side. By moving this padding to the left side of the text we can better prevent an accidental selection of line numbers. * Revert "Prevent accidental mouse selection of code line numbers" This reverts commit f7d8633. * Prevent accidental mouse selection of code line numbers --------- Co-authored-by: Marvin Reimer <[email protected]>
1 parent 7dfe38c commit 3276dd1

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

source/css/_partial/highlight.styl

+9-4
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,15 @@ $line-numbers
6060
margin-bottom: 1em
6161
a
6262
float: right
63-
.gutter pre
64-
@extend $line-numbers
65-
text-align: right
66-
padding-right: 20px
63+
.gutter
64+
-moz-user-select: none;
65+
-ms-user-select: none;
66+
-webkit-user-select: none;
67+
user-select: none;
68+
pre
69+
@extend $line-numbers
70+
text-align: right
71+
padding-right: 20px
6772
.line
6873
height: font-size * line-height
6974
.line.marked

0 commit comments

Comments
 (0)