Last active
April 24, 2019 11:03
-
-
Save hasefumi23/4bd3331b12e13200e3f1a5ab965de6d1 to your computer and use it in GitHub Desktop.
VS Code custom css for statusbar.
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 .statusbar-item>.monaco-dropdown.send-feedback>.dropdown-label.send-feedback { | |
| background-color: #ffc600 !important; | |
| } | |
| .task-statusbar-item-label>.task-statusbar-item-label-info { | |
| background-color: #ffc600 !important; | |
| } | |
| .task-statusbar-item-label>.task-statusbar-item-label-warning { | |
| background-color: #ffc600 !important; | |
| } | |
| .task-statusbar-item-label>.task-statusbar-item-label-error { | |
| background-color: #ffc600 !important; | |
| } | |
| .monaco-workbench .part.statusbar>.statusbar-item.left>:first-child, .monaco-workbench .part.statusbar>.statusbar-item.right>:first-child { | |
| color: #ffc600; | |
| } | |
| .monaco-workbench .part.statusbar { | |
| box-sizing: border-box; | |
| cursor: default; | |
| width: 100%; | |
| height: 22px; | |
| font-size: 18px; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment