Skip to content

Commit

Permalink
Fix Netlify CMS cursor jump issue in Chrome/Edge
Browse files Browse the repository at this point in the history
  • Loading branch information
marcojakob committed Sep 22, 2022
1 parent f8e96ea commit 18c9628
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Changelog

## UNRELEASED
## Version 1.5.1 (2022-09-22)

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

## Version 1.5.0 (2020-11-01)

Expand Down
2 changes: 1 addition & 1 deletion config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ copyright = "2021 by lernblog.org - Creative Commons Attribution-ShareAlike 4.0"

[params]
lernblogName = "Lernblog"
lernblogVersion = "1.5.0"
lernblogVersion = "1.5.1"
lernblogUrl = "https://www.lernblog.org"

[permalinks]
Expand Down
6 changes: 6 additions & 0 deletions static/admin/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@
<title>Lernblog Admin</title>

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

0 comments on commit 18c9628

Please sign in to comment.