File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
arduino-ide-extension/src/browser Expand file tree Collapse file tree 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 {
203203 width : 100% ;
204204 overflow : hidden;
205205 margin : 0px 3px 0px 3px ;
206+ border : 1px solid var (--theia-dropdown-border );
206207}
207208
208209.arduino-boards-dropdown-list {
209210 border : 3px solid var (--theia-activityBar-background );
210- margin : -3 px ;
211+ margin : -1 px ;
211212 z-index : 1 ;
213+ border : 1px solid var (--theia-dropdown-border );
212214}
213215
214216.arduino-boards-dropdown-item {
@@ -218,6 +220,7 @@ button.theia-button.main {
218220 cursor : pointer;
219221 color : var (--theia-foreground );
220222 background : var (--theia-tab-unfocusedActiveBackground );
223+ border : 1px solid var (--theia-tab-unfocusedActiveBackground );
221224}
222225
223226.arduino-boards-dropdown-item .fa-check {
@@ -227,5 +230,5 @@ button.theia-button.main {
227230
228231.arduino-boards-dropdown-item .selected ,
229232.arduino-boards-dropdown-item : hover {
230- background : var (--theia-list-hoverBackground );
233+ border : 1 px solid var (--theia-focusBorder );
231234}
Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ export class ArduinoSelect<T> extends Select<T> {
5151 const DropdownIndicator = ( ) => < span className = 'fa fa-caret-down caret' /> ;
5252 return < Select
5353 { ...this . props }
54+ className = 'theia-select'
5455 components = { { DropdownIndicator } }
5556 theme = { theme }
5657 styles = { styles }
You can’t perform that action at this time.
0 commit comments