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

Disallow line wrapping in gutter container

This prevents gutters from suddenly moving below each other as the
editor is scroller horizontally.
parent b915f9a5
No related branches found
No related tags found
No related merge requests found
......@@ -28,6 +28,7 @@
.CodeMirror-gutters {
border-right: 1px solid #ddd;
background-color: #f7f7f7;
white-space: nowrap;
}
.CodeMirror-linenumbers {}
.CodeMirror-linenumber {
......@@ -151,6 +152,7 @@ div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
z-index: 3;
}
.CodeMirror-gutter {
white-space: normal;
height: 100%;
padding-bottom: 30px;
margin-bottom: -32px;
......
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