Skip to content

Commit

Permalink
monaco: quick input regression fix
Browse files Browse the repository at this point in the history
This commit is the first attempt to fix the regression introduced in
 eclipse-theia#12095

Signed-Off-By: FernandoAscencio <[email protected]>
  • Loading branch information
FernandoAscencio committed Feb 22, 2023
1 parent f496793 commit 2bca18e
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions packages/monaco/src/browser/style/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
color: var(--theia-foreground) !important;
}

.quick-input-list
/* .quick-input-list
.quick-input-list-rows
> .quick-input-list-row
.monaco-icon-label,
Expand All @@ -118,9 +118,8 @@
.monaco-icon-label
.monaco-icon-label-container
> .monaco-icon-name-container {
display: flex !important;
overflow: hidden;
}
display: flex;
} */

.quick-input-list .monaco-list-row.focused {
background-color: var(--theia-quickInputList-focusBackground) !important;
Expand Down Expand Up @@ -188,14 +187,16 @@
font-family: var(--theia-ui-font-family);
font-size: var(--theia-ui-font-size1) !important;
color: var(--theia-foreground) !important;
overflow: hidden;
text-overflow: ellipsis;
}

.quick-input-list .monaco-icon-label::before {
transform: scale(0.8);
}

.quick-input-list .monaco-icon-label.codicon {
display: flex;
}

.quick-input-list .monaco-icon-label.codicon::before {
padding-top: 3px;
}
Expand Down

0 comments on commit 2bca18e

Please sign in to comment.