Skip to content

Commit

Permalink
Merge pull request #21 from sabeechen/ios-css
Browse files Browse the repository at this point in the history
Make input elements selectable for browsers that care about user-selectable CSS attributes
  • Loading branch information
andreisperid authored Feb 25, 2023
2 parents 32c6777 + a2b085e commit 6de30f3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions data/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@
-ms-user-select: none; /* IE 10+ */
user-select: none; /* Likely future */
}
input {
-webkit-user-select: text; /* Chrome all / Safari all */
-moz-user-select: text; /* Firefox all */
-ms-user-select: text; /* IE 10+ */
user-select: text; /* Likely future */
}
body {
background-color: rgb(32, 32, 32);
margin: 0px;
Expand Down

0 comments on commit 6de30f3

Please sign in to comment.