Skip to content

Commit c4c4ab3

Browse files
committed
Add border radius to quickinput
1 parent cd62c92 commit c4c4ab3

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

packages/monaco/src/browser/style/index.css

+9
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@
4545
}
4646

4747
/* Scrollbars, see https://github.com/microsoft/vscode/blob/ff5f581425da6230b6f9216ecf19abf6c9d285a6/src/vs/workbench/browser/style.ts#L65 */
48+
.monaco-scrollable-element {
49+
padding: 0px 5px;
50+
}
51+
4852
.monaco-scrollable-element > .shadow.top {
4953
box-shadow: var(--theia-scrollbar-shadow) 0 6px 6px -6px inset !important;
5054
}
@@ -101,6 +105,7 @@
101105
.quick-input-widget {
102106
background-color: var(--theia-quickInput-background) !important;
103107
color: var(--theia-foreground) !important;
108+
border-radius: 6px;
104109
}
105110

106111
.quick-input-list
@@ -122,6 +127,10 @@
122127
overflow: hidden;
123128
}
124129

130+
.quick-input-list .monaco-list-row {
131+
border-radius: 3px;
132+
}
133+
125134
.quick-input-list .monaco-list-row.focused {
126135
background-color: var(--theia-quickInputList-focusBackground) !important;
127136
}

0 commit comments

Comments
 (0)