Merge pull request #1020 from T1mL3arn/master

Fix css comments
This commit is contained in:
Ilya Kantor 2019-05-27 19:57:25 +03:00 committed by GitHub
commit feebcc847f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 5 deletions

View file

@ -20,6 +20,6 @@
} }
.edit:focus { .edit:focus {
outline: none;
/* remove focus border in Safari */ /* remove focus border in Safari */
outline: none;
} }

View file

@ -20,6 +20,6 @@
} }
.edit:focus { .edit:focus {
outline: none;
/* remove focus border in Safari */ /* remove focus border in Safari */
outline: none;
} }

View file

@ -3,14 +3,15 @@
margin: 0; margin: 0;
padding: 0; padding: 0;
display: block; display: block;
resize: none;
/* remove resizing handle in Firefox */ /* remove resizing handle in Firefox */
resize: none;
outline: none;
/* remove outline on focus in Chrome */ /* remove outline on focus in Chrome */
outline: none;
overflow: auto;
/* remove scrollbar in IE */ /* remove scrollbar in IE */
overflow: auto;
} }
.edit-controls { .edit-controls {