File tree 2 files changed +6
-2
lines changed
arduino-ide-extension/src/browser
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -203,12 +203,14 @@ button.theia-button.main {
203
203
width : 100% ;
204
204
overflow : hidden;
205
205
margin : 0px 3px 0px 3px ;
206
+ border : 1px solid var (--theia-dropdown-border );
206
207
}
207
208
208
209
.arduino-boards-dropdown-list {
209
210
border : 3px solid var (--theia-activityBar-background );
210
- margin : -3 px ;
211
+ margin : -1 px ;
211
212
z-index : 1 ;
213
+ border : 1px solid var (--theia-dropdown-border );
212
214
}
213
215
214
216
.arduino-boards-dropdown-item {
@@ -218,6 +220,7 @@ button.theia-button.main {
218
220
cursor : pointer;
219
221
color : var (--theia-foreground );
220
222
background : var (--theia-tab-unfocusedActiveBackground );
223
+ border : 1px solid var (--theia-tab-unfocusedActiveBackground );
221
224
}
222
225
223
226
.arduino-boards-dropdown-item .fa-check {
@@ -227,5 +230,5 @@ button.theia-button.main {
227
230
228
231
.arduino-boards-dropdown-item .selected ,
229
232
.arduino-boards-dropdown-item : hover {
230
- background : var (--theia-list-hoverBackground );
233
+ border : 1 px solid var (--theia-focusBorder );
231
234
}
Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ export class ArduinoSelect<T> extends Select<T> {
51
51
const DropdownIndicator = ( ) => < span className = 'fa fa-caret-down caret' /> ;
52
52
return < Select
53
53
{ ...this . props }
54
+ className = 'theia-select'
54
55
components = { { DropdownIndicator } }
55
56
theme = { theme }
56
57
styles = { styles }
You can’t perform that action at this time.
0 commit comments