diff options
| -rwxr-xr-x | public/assets/stylesheets/app.css | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/public/assets/stylesheets/app.css b/public/assets/stylesheets/app.css index 65df135..467c83b 100755 --- a/public/assets/stylesheets/app.css +++ b/public/assets/stylesheets/app.css @@ -16,6 +16,8 @@ input:-webkit-autofill { border-radius:0; } + + *, *:before, *:after { moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } @@ -42,6 +44,11 @@ body.editing *{ -moz-user-select: none; user-select: none; } + +body.editing input { + -webkit-user-select: auto; +} + body.noOverflow{ overflow:hidden; } |
