0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-24 23:48:13 -05:00

Fixed ability to type in markdown cards

no issue
- `visibility: hidden` resulted in the textarea not receiving events which breaks CodeMirror
This commit is contained in:
Kevin Ansfield 2019-01-22 11:34:24 +00:00
parent bc8d21e224
commit 064e3373f2

View file

@ -380,7 +380,7 @@
/* ensure there's no flash of unstyled textarea while initializing */ /* ensure there's no flash of unstyled textarea while initializing */
.gh-markdown-editor textarea { .gh-markdown-editor textarea {
visibility: hidden; opacity: 0;
} }
.gh-editor-title { .gh-editor-title {