mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 09:43:54 +01:00
50 lines
781 B
SCSS
50 lines
781 B
SCSS
@import "theme";
|
|
|
|
/**
|
|
* Customized styling for the Code Mirror editor
|
|
*/
|
|
|
|
#codemirror-form-wrapper {
|
|
height: 80%;
|
|
margin: 10px 0 0 6px;
|
|
}
|
|
|
|
.CodeMirror {
|
|
height: 100%;
|
|
width: 100%;
|
|
border: 2px solid var(--my-highlight-color);
|
|
z-index: 1;
|
|
font-family: $fontFamily;
|
|
font-size: $defaultFontSize;
|
|
}
|
|
|
|
/**
|
|
* Highlight matches
|
|
*/
|
|
.cm-matchhighlight {
|
|
background-color: #8f908a;
|
|
}
|
|
|
|
.CodeMirror-selection-highlight-scrollbar {
|
|
background-color: #8f908a;
|
|
}
|
|
|
|
/**
|
|
* Show Invisibles
|
|
*/
|
|
.cm-whitespace::before {
|
|
position: absolute;
|
|
pointer-events: none;
|
|
color: #404f7d;
|
|
}
|
|
|
|
/**
|
|
* Vim command display
|
|
*/
|
|
#codemirror-vim-command-display-wrapper {
|
|
background-color: white;
|
|
font-size: 13px;
|
|
height: 30px;
|
|
margin-left: 6px;
|
|
}
|