Last active
January 15, 2021 02:25
-
-
Save cedrus-8864/b6bd7b98442708613179f1726e756523 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
/* | |
FOLLOW THIS GUIDE: | |
https://github.com/be5invis/vscode-custom-css | |
*/ | |
/* font styles. */ | |
/* .mtk11 { | |
font-style: italic; | |
} */ | |
.monaco-workbench .part.editor > .content .editor-group-container > .title { | |
z-index: 59; | |
margin: 0 -350px; | |
} | |
.monaco-workbench.nosidebar .part.editor > .content .editor-group-container > .title { | |
margin: 0 -450px; | |
} | |
.monaco-workbench .monaco-editor .overflow-guard { | |
overflow: visible; | |
} | |
.monaco-workbench .monaco-editor .scroll-decoration { | |
right: -350px; | |
left: -350px; | |
width: unset !important; | |
} | |
.monaco-workbench.nosidebar .monaco-editor .scroll-decoration { | |
right: -450px; | |
left: -450px; | |
} | |
.monaco-breadcrumbs { | |
width: 100% !important; | |
} | |
#workbench\.parts\.editor .content > div > .monaco-scrollable-element > .split-view-container > .split-view-view:first-child { | |
opacity: 0; | |
visibility: hidden; | |
} | |
#workbench\.parts\.editor .content > div > .monaco-scrollable-element > .split-view-container > .split-view-view:nth-child(2)::before { | |
opacity: 0; | |
visibility: hidden; | |
} | |
#workbench\.parts\.editor .content > div > .monaco-scrollable-element > .split-view-container > .split-view-view:last-child { | |
opacity: 0; | |
visibility: hidden; | |
} | |
#workbench\.parts\.editor .monaco-grid-view { | |
overflow: visible !important; | |
} | |
#workbench\.parts\.editor .monaco-grid-view > .monaco-grid-branch-node > div > .monaco-scrollable-element { | |
overflow: visible !important; | |
} | |
#workbench\.parts\.editor .monaco-grid-view > .monaco-grid-branch-node > div > .monaco-scrollable-element > .split-view-container { | |
overflow: visible !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment