🎨 fix editor header not covering scrolled content (#769)

no issue
- background color of the editor header at smaller screen sizes had been removed resulting in the editor content showing through when scrolling, this adds the explicit bg color back for both normal and dark mode
This commit is contained in:
Kevin Ansfield 2017-07-06 11:23:14 +01:00 committed by Aileen Nowak
parent 036ab413d3
commit d2a1835f5a
2 changed files with 5 additions and 0 deletions

View File

@ -250,6 +250,10 @@ input,
background: rgba(0,0,0,0.2);
}
.gh-editor-header-small {
background: #263238;
}
.gh-editor .CodeMirror-cursor {
border-color: #fff;
}

View File

@ -170,6 +170,7 @@
height: 43px;
padding: 0;
padding-left: 15px;
background-color: #fff;
border-bottom: var(--lightgrey) 1px solid;
z-index: 100;
}