Skip to content

Commit

Permalink
polish toggleTabFocusMode
Browse files Browse the repository at this point in the history
  • Loading branch information
isidorn committed Dec 20, 2016
1 parent 57f3b4e commit fd96ccb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ export class ToggleTabFocusModeAction extends EditorAction {
constructor() {
super({
id: ToggleTabFocusModeAction.ID,
label: nls.localize('toggle.tabfocusmode', "Toggle Use of Tab Key for Setting Focus"),
alias: 'Toggle Use of Tab Key for Setting Focus',
label: nls.localize('toggle.tabMovesFocus', "Toggle Tab Key Moves Focus"),
alias: 'Toggle Tab Key Moves Focus',
precondition: null,
kbOpts: {
kbExpr: null,
Expand Down
6 changes: 5 additions & 1 deletion src/vs/workbench/browser/parts/editor/media/editorstatus.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,9 @@

.monaco-workbench .editor-statusbar-item > .editor-status-tabfocusmode {
padding: 0 5px 0 5px;
background-color: brown !important;
background-color: #388a34;
}

.monaco-workbench > .part.statusbar .editor-statusbar-item > .editor-status-tabfocusmode:hover:not([disabled]):not(.disabled) {
background-color: #369432;
}

0 comments on commit fd96ccb

Please sign in to comment.