allow text selection in chrome app

This commit is contained in:
Tankred Hase 2013-11-11 15:29:22 +01:00
parent 0907573845
commit 217442c471
2 changed files with 5 additions and 1 deletions

View File

@ -1,7 +1,7 @@
{
"name": "Whiteout Mail (DEV)",
"description": "Simple & elegant email client with integrated end-to-end encryption. Keeping your emails safe has never been so easy.",
"version": "0.1.8.1",
"version": "0.1.9.1",
"manifest_version": 2,
"offline_enabled": true,
"icons": {

View File

@ -43,6 +43,10 @@ textarea {
.main-app-view {
height: 100%;
// allow text selection
-webkit-user-select: text;
// make scrollbars invisible
::-webkit-scrollbar {
width: 0px;
}