diff --git a/src/index.css b/src/index.css index d363a87..7d9717d 100644 --- a/src/index.css +++ b/src/index.css @@ -53,7 +53,6 @@ a { text-align: right; padding-left: 100px; padding-right: 7px; - user-select: text; -webkit-app-region: drag; z-index: 1000; } @@ -340,3 +339,8 @@ select.button:focus { /* Support for IE. */ font-feature-settings: 'liga'; } + +/* only allow select on input fields */ +body :not(input):not(select):not(textarea) { + user-select: none; +}