- Windows 系统下,workbench.desktop.main.css 文件位置:
[用户目录]\AppData\Local\Programs\Microsoft VS Code\resources\app\out\vs\workbench
- Mac 系统下,workbench.desktop.main.css 文件位置:
/Applications/Visual Studio Code.app/Contents/Resources/app/out/vs/workbench
Last active
April 13, 2020 06:11
-
-
Save hex-ci/20c9be4b9a9b63fc2bb6d767b659121a to your computer and use it in GitHub Desktop.
VSCode support multiline tabs. 让 VSCode 支持多行 Tabs.
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
.monaco-workbench .part.editor>.content .editor-group-container>.title .tabs-container { | |
flex-wrap: wrap; | |
height: auto; | |
} | |
.monaco-workbench .part.editor>.content .editor-group-container>.title.tabs>.tabs-and-actions-container>.monaco-scrollable-element { | |
height: auto!important; | |
z-index: 11000; | |
} | |
.quick-input-widget { | |
z-index: 12000; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment