Skip to content
Snippets Groups Projects
Commit 42ab2479 authored by Marijn Haverbeke's avatar Marijn Haverbeke
Browse files

Add overflow: auto to line widget wrapper to prevent margin leaking

(If the widget had a margin, that margin would end up outside the wrapper, throwing off
line height measurement.)

Might be related to issue #925
parent 0921d57c
No related branches found
No related tags found
No related merge requests found
......@@ -196,6 +196,7 @@ div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
.CodeMirror-linewidget {
position: relative;
z-index: 2;
overflow: auto;
}
.CodeMirror-wrap .CodeMirror-scroll {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment