File tree 2 files changed +9
-7
lines changed
arduino-ide-extension/src/browser
2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -130,11 +130,14 @@ export class BoardsDropDown extends React.Component<BoardsDropDown.Props> {
130
130
protocolIcon
131
131
) }
132
132
/>
133
- < div className = "arduino-boards-dropdown-item--label" >
134
- < div className = "arduino-boards-dropdown-item--board-label" >
133
+ < div
134
+ className = "arduino-boards-dropdown-item--label"
135
+ title = { `${ boardLabel } \n${ port . address } ` }
136
+ >
137
+ < div className = "arduino-boards-dropdown-item--board-label noWrapInfo noselect" >
135
138
{ boardLabel }
136
139
</ div >
137
- < div className = "arduino-boards-dropdown-item--port-label" >
140
+ < div className = "arduino-boards-dropdown-item--port-label noWrapInfo noselect " >
138
141
{ port . address }
139
142
</ div >
140
143
</ div >
@@ -229,7 +232,8 @@ export class BoardsToolBarItem extends React.Component<
229
232
< div
230
233
className = { classNames (
231
234
'arduino-boards-toolbar-item--label' ,
232
- 'noWrapInfo noselect' ,
235
+ 'noWrapInfo' ,
236
+ 'noselect' ,
233
237
{ 'arduino-boards-toolbar-item--label-connected' : isConnected }
234
238
) }
235
239
>
Original file line number Diff line number Diff line change @@ -181,9 +181,6 @@ div#select-board-dialog .selectBoardContainer .body .list .item.selected i {
181
181
}
182
182
183
183
.arduino-boards-toolbar-item--label {
184
- height : 100% ;
185
- display : flex;
186
- align-items : center;
187
184
width : 100% ;
188
185
}
189
186
@@ -227,6 +224,7 @@ div#select-board-dialog .selectBoardContainer .body .list .item.selected i {
227
224
}
228
225
229
226
.arduino-boards-dropdown-item--label {
227
+ overflow : hidden;
230
228
flex : 1 ;
231
229
}
232
230
You can’t perform that action at this time.
0 commit comments