Created
June 12, 2018 17:49
-
-
Save inodaf/224579e926b89552d41d245b4c9ccd3b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Fat Cursor. | |
This overwrites the "underline thin" style since that is one that can be styled with CSS | |
So set your settings to: | |
"editor.cursorStyle": "underline-thin", | |
*/ | |
.monaco-editor .cursors-layer.cursor-underline-thin-style > .cursor { | |
border-bottom-width: 0; | |
border-left-width: 3px; | |
border-left-style: solid; | |
background: transparent !important; | |
box-sizing: border-box; | |
} | |
/* This makes the dirty tab circle yellow */ | |
.vs-dark | |
.monaco-workbench | |
> .part.editor | |
> .content | |
> .one-editor-silo | |
> .container | |
> .title | |
.tabs-container | |
> .tab.dirty | |
.close-editor-action { | |
background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' height='16' width='16'%3E%3Ccircle fill='%23ffc600' cx='8' cy='8' r='4'/%3E%3C/svg%3E") | |
50% no-repeat; | |
} | |
.monaco-workbench > .editor > .content > .one-editor-silo { | |
border-top: 1px solid #15232d !important; | |
} | |
.one-editor-silo + .one-editor-silo { | |
border-left: 1px solid #15232d !important; | |
} | |
/* | |
This puts a thin yellow border around the found items like Sublime did it | |
*/ | |
.monaco-editor .findMatch, | |
.monaco-editor .selectionHighlight { | |
border: 1px solid #ffc600; | |
border-radius: 2px; | |
background: transparent; | |
} | |
/* This accounts for larger font cutting off - bump up 3px */ | |
.monaco-workbench>.activitybar>.content .monaco-action-bar .badge .badge-content { | |
top: 17px !important; | |
} | |
/* Comments color */ | |
.arthurwhite-white-themes-White-Night-color-theme-json .mtk3 { | |
color: #936fe6; | |
} | |
.one-editor-silo.editor-one.centered { | |
background-color: #000; | |
} | |
.editor-container { | |
border-color: #000; | |
} | |
.monaco-editor, | |
.monaco-editor-background, | |
.monaco-editor .inputarea.ime-input { | |
background-color: #000; | |
} | |
.monaco-editor .margin { | |
background-color: #000; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment