Skip to content

Commit

Permalink
Fix hollow terminal cursor style
Browse files Browse the repository at this point in the history
Fixes #9800
  • Loading branch information
Tyriar committed Jul 26, 2016
1 parent 6a85767 commit 44cd0be
Showing 1 changed file with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,20 +55,17 @@
.hc-black .monaco-workbench .panel.integrated-terminal .xterm.focus .terminal-cursor,
.hc-black .monaco-workbench .panel.integrated-terminal .xterm:focus .terminal-cursor { background-color: #FFF; }

.monaco-workbench .panel.integrated-terminal .xterm:not(.focus) .terminal-cursor,
.monaco-workbench .panel.integrated-terminal .xterm:not(:focus) .terminal-cursor {
.monaco-workbench .panel.integrated-terminal .xterm:not(.focus):not(:focus) .terminal-cursor {
background-color: transparent;
outline: 1px solid #333;
outline-offset: -1px;
}
.vs-dark .monaco-workbench .panel.integrated-terminal .xterm:not(.focus) .terminal-cursor,
.vs-dark .monaco-workbench .panel.integrated-terminal .xterm:not(:focus) .terminal-cursor {
.vs-dark .monaco-workbench .panel.integrated-terminal .xterm:not(.focus):not(:focus) .terminal-cursor {
background-color: transparent;
outline: 1px solid #CCC;
outline-offset: -1px;
}
.hc-black .monaco-workbench .panel.integrated-terminal .xterm:not(.focus) .terminal-cursor,
.hc-black .monaco-workbench .panel.integrated-terminal .xterm:not(:focus) .terminal-cursor {
.hc-black .monaco-workbench .panel.integrated-terminal .xterm:not(.focus):not(:focus) .terminal-cursor {
background-color: transparent;
outline: 1px solid #FFF;
outline-offset: -1px;
Expand Down

0 comments on commit 44cd0be

Please sign in to comment.