Skip to content
This repository was archived by the owner on Dec 5, 2022. It is now read-only.

Commit

Permalink
fix: make code element selectable (#424)
Browse files Browse the repository at this point in the history
  • Loading branch information
pd4d10 authored and codebytere committed Aug 2, 2019
1 parent 58cf495 commit 3890f03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/css/nativize.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

html {
font-family: sans-serif;
-webkit-user-select: none; /* disable selection */
user-select: none; /* disable selection */
-webkit-user-drag: none; /* disable dragging */
cursor: default; /* use default cursor */
}
Expand All @@ -20,7 +20,7 @@ body {
.is-selectable,
pre,
code {
-webkit-user-select: auto;
user-select: text;
cursor: auto;
}

Expand Down

0 comments on commit 3890f03

Please sign in to comment.