Last active
January 27, 2023 13:14
-
-
Save innocenzi/e8a46d7c7655592904cf67832c1d98ef to your computer and use it in GitHub Desktop.
Visual Studio Code custom CSS
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
.title.breadcrumbs { | |
display: none !important; | |
} | |
.window-title { | |
visibility: hidden !important; | |
} | |
.monaco-editor .scroll-decoration, | |
.scroll-decoration { | |
display: none !important; | |
box-shadow: none !important; | |
} | |
.window-appicon { | |
opacity: 0 !important; | |
} | |
.editor .title { | |
background: transparent !important; | |
} | |
.editor .title .label-container { | |
visibility: hidden; | |
} | |
.editor .title .actions-container .action-item a { | |
visibility: hidden; | |
} | |
.editor .title .actions-container .action-item a[title=\"Open Settings (UI)\"] { | |
visibility: initial; | |
} | |
.editor | |
.title | |
.actions-container | |
.action-item | |
a[title=\"Open Settings (JSON)\"] { | |
visibility: initial; | |
} | |
.editor .title .actions-container { | |
flex-direction: row-reverse; | |
} | |
/* | |
.editor .scrollbar .slider { | |
visibility: hidden; | |
} | |
.editor .scrollbar:hover .slider { | |
visibility: initial; | |
} | |
*/ | |
.monaco-editor .scroll-decoration { | |
box-shadow: none !important; | |
} | |
.monaco-workbench .part.editor>.content .editor-group-container>.title>.title-actions .action-item { | |
margin-right: 15px !important; | |
} | |
/* reduces opacity of non-focused editors */ | |
.editor-group-container { | |
transition-property: opacity; | |
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); | |
transition-duration: 150ms; | |
} | |
.editor-group-container.inactive { | |
opacity: .75; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment