Skip to content

Commit 18c9628

Browse files
committed
Fix Netlify CMS cursor jump issue in Chrome/Edge
see decaporg/decap-cms#5092
1 parent f8e96ea commit 18c9628

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# Changelog
22

3-
## UNRELEASED
3+
## Version 1.5.1 (2022-09-22)
44

55
- Remove `utm_source` in atom feed links again (I don't like it in URLs).
6+
- Fix Netlify CMS cursor jump issue in Chrome/Edge (see https://github.com/netlify/netlify-cms/issues/5092).
67

78
## Version 1.5.0 (2020-11-01)
89

config.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ copyright = "2021 by lernblog.org - Creative Commons Attribution-ShareAlike 4.0"
88

99
[params]
1010
lernblogName = "Lernblog"
11-
lernblogVersion = "1.5.0"
11+
lernblogVersion = "1.5.1"
1212
lernblogUrl = "https://www.lernblog.org"
1313

1414
[permalinks]

static/admin/index.html

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@
77
<title>Lernblog Admin</title>
88

99
<script src="https://identity.netlify.com/v1/netlify-identity-widget.js"></script>
10+
<style>
11+
/* Fix Netlify CMS cursor jump issue in Chrome/Edge (see https://github.com/netlify/netlify-cms/issues/5092). */
12+
[data-slate-editor] {
13+
-webkit-user-modify: read-write !important;
14+
}
15+
</style>
1016
</head>
1117
<body>
1218
<script src="https://unpkg.com/netlify-cms@^2.0.0/dist/netlify-cms.js"></script>

0 commit comments

Comments
 (0)