We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 915af7e commit 929f620Copy full SHA for 929f620
1 file changed
src-web/components/core/Editor/Editor.css
@@ -67,6 +67,13 @@
67
@apply bg-selection !important;
68
}
69
70
+ /* Fix WebKit/WKWebView rendering bug where selection layer leaves a ghost
71
+ residual line below wrapped lines after deselecting (CodeMirror issue #1600, #1627).
72
+ The layer div must be hidden when empty to force a repaint. */
73
+ .cm-selectionLayer:empty {
74
+ display: none;
75
+ }
76
+
77
/* Style gutters */
78
79
.cm-gutters {
0 commit comments