We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b09f55 commit c508be4Copy full SHA for c508be4
.changeset/swift-feet-play.md
@@ -0,0 +1,7 @@
1
+---
2
+"astro-netlify-cms": patch
3
4
+
5
+Fix an issue in some browsers with the rich text editor.
6
7
+Adds the workaround documented in [netlify/netlify-cms#5092](https://github.com/netlify/netlify-cms/issues/5092) to the admin dashboard.
admin-dashboard.astro
@@ -11,6 +11,12 @@
11
import initCMS from './dist/cms';
12
initCMS(options);
13
</script>
14
+ <style is:global>
15
+ /* Workaround for https://github.com/netlify/netlify-cms/issues/5092 */
16
+ [data-slate-editor] {
17
+ -webkit-user-modify: read-write !important;
18
+ }
19
+ </style>
20
</head>
21
<body></body>
22
</html>
0 commit comments