Skip to content

Commit

Permalink
💄
Browse files Browse the repository at this point in the history
  • Loading branch information
bpasero committed Apr 26, 2017
1 parent f735843 commit 48ae6e3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
1 change: 1 addition & 0 deletions src/vs/workbench/electron-browser/shell.ts
Original file line number Diff line number Diff line change
Expand Up @@ -587,6 +587,7 @@ registerThemingParticipant((theme: ITheme, collector: ICssStyleCollector) => {
.monaco-shell .monaco-tree.focused.no-focused-item:focus:before,
.monaco-shell input[type="button"]:focus,
.monaco-shell input[type="text"]:focus,
.monaco-shell button:focus,
.monaco-shell textarea:focus,
.monaco-shell input[type="search"]:focus,
.monaco-shell input[type="checkbox"]:focus {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
.task-statusbar-item-label {
display: inline-block;
cursor: pointer;
padding: 0 5px 0 5px;
padding: 0 0 0 5px;
}

.task-statusbar-item-label > .task-statusbar-item-label-counter {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,6 @@
height: 5em;
font-size: 1.3em;
text-align: left;
outline: none;
cursor: pointer;
white-space: nowrap;
}
Expand Down Expand Up @@ -243,12 +242,9 @@
background: rgba(200, 235, 255, .072);
}

.vs .monaco-workbench > .part.editor > .content .welcomePage .commands li button:focus {
outline: 1px solid rgba(0, 0, 0, .6);
}

.vs-dark .monaco-workbench > .part.editor > .content .welcomePage .commands li button:focus {
outline: 1px solid rgba(255, 255, 255, .5);
.monaco-workbench > .part.editor > .content .welcomePage .commands li button:focus {
outline-style: solid;
outline-width: 1px;
}

.hc-black .monaco-workbench > .part.editor > .content .welcomePage .commands li button {
Expand Down

0 comments on commit 48ae6e3

Please sign in to comment.