Prevent users selecting elements of the UI that shouldn't be selectable. Fixes #1976

This commit is contained in:
Dave Page
2016-11-18 10:55:00 +00:00
parent 8e60f33e65
commit 687f1f640f
4 changed files with 48 additions and 24 deletions

View File

@@ -77,4 +77,8 @@
overflow: auto;
height: 100%;
font-size: 0.925em;
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
}