mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-26 12:21:36 +03:00
🐛 Fixed missing cursor and selection issues using editor on iOS
closes https://github.com/TryGhost/Ghost/issues/9378 - only disable element selection on the codemirror content on desktop
This commit is contained in:
parent
57c20d5aae
commit
99576c2da3
@ -450,7 +450,10 @@
|
|||||||
overflow: visible;
|
overflow: visible;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
background: transparent;
|
background: transparent;
|
||||||
/* Prevent confusing select behaviour, see https://github.com/TryGhost/Ghost/issues/9356 */
|
}
|
||||||
|
|
||||||
|
/* Prevent confusing select behaviour, see https://github.com/TryGhost/Ghost/issues/9356 */
|
||||||
|
.gh-editor .CodeMirror-code:not([contenteditable="true"]) {
|
||||||
user-select: none;
|
user-select: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user