mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-10-10 03:48:33 +00:00

* Removed Protocol type * Reworked function that groups ports by protocol * Remove useless protocol check in Port sameAs function * Reworked port selection menu ordering Now ports are shown in this order: 1. Serial with recognized boards 2. Serial with unrecognized boards 3. Network with recognized boards 4. Network with unrecognized boards 5. Other protocols with recognized boards 6. Other protocols with unrecognized boards * Fix ports shown multiple times in menu * Reworked board selection dropdown ordering Ordering is now: 1. Serial with recognized boards 2. Serial with guessed boards 3. Serial with incomplete boards 4. Network with recognized boards 5. Other protocols with recognized boards * Localize some strings * Fix bug selecting board in boards selector dropdown * Reworked board selection dialog ordering * Fix Tools > Port menu not refreshing * Move Select other board button to bottom of Board selector dropdown and change its style * Updated arduino-cli to 0.20.0 and generated protocol files
238 lines
5.6 KiB
CSS
238 lines
5.6 KiB
CSS
div#select-board-dialog {
|
|
margin: 5px;
|
|
}
|
|
|
|
div#select-board-dialog .selectBoardContainer .body {
|
|
display: flex;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.select-board-dialog .head {
|
|
margin: 5px;
|
|
}
|
|
|
|
div.dialogContent.select-board-dialog > div.head .title {
|
|
font-weight: 400;
|
|
letter-spacing: 0.02em;
|
|
font-size: 1.2em;
|
|
color: var(--theia-arduino-branding-primary);
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
div#select-board-dialog .selectBoardContainer .body .list .item.selected {
|
|
background: var(--theia-secondaryButton-hoverBackground);
|
|
}
|
|
|
|
div#select-board-dialog .selectBoardContainer .body .list .item.selected i {
|
|
color: var(--theia-arduino-branding-primary);
|
|
}
|
|
|
|
#select-board-dialog .selectBoardContainer .search,
|
|
#select-board-dialog .selectBoardContainer .search input,
|
|
#select-board-dialog .selectBoardContainer .list,
|
|
#select-board-dialog .selectBoardContainer .list {
|
|
background: var(--theia-editor-background);
|
|
}
|
|
|
|
#select-board-dialog .selectBoardContainer .body .search input {
|
|
border: none;
|
|
width: 100%;
|
|
height: auto;
|
|
max-height: 37px;
|
|
padding: 10px 5px 10px 10px;
|
|
margin: 0;
|
|
vertical-align: top;
|
|
display: flex;
|
|
color: var(--theia-editor-foreground);
|
|
}
|
|
|
|
#select-board-dialog .selectBoardContainer .body .search input:focus {
|
|
box-shadow: none;
|
|
}
|
|
|
|
#select-board-dialog .selectBoardContainer .body .container {
|
|
flex: 1;
|
|
padding: 0px 10px 0px 0px;
|
|
min-width: 240px;
|
|
max-width: 240px;
|
|
}
|
|
|
|
#select-board-dialog .selectBoardContainer .body .left.container .content {
|
|
margin: 0 5px 0 0;
|
|
}
|
|
|
|
#select-board-dialog .selectBoardContainer .body .right.container .content {
|
|
margin: 0 0 0 5px;
|
|
}
|
|
|
|
#select-board-dialog .selectBoardContainer .body .container .content .title {
|
|
color: #7f8c8d;
|
|
padding: 0px 0px 10px 0px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
#select-board-dialog .selectBoardContainer .body .container .content .footer {
|
|
padding: 10px 5px 10px 0px;
|
|
}
|
|
|
|
#select-board-dialog .selectBoardContainer .body .container .content .loading {
|
|
font-size: var(--theia-ui-font-size1);
|
|
color: var(--theia-arduino-branding-secondary);
|
|
padding: 10px 5px 10px 10px;
|
|
text-transform: uppercase;
|
|
/* The max, min-height comes from `.body .list` 200px + 47px top padding - 2 * 10px top padding */
|
|
max-height: 227px;
|
|
min-height: 227px;
|
|
}
|
|
|
|
#select-board-dialog .selectBoardContainer .body .list .item {
|
|
padding: 10px 5px 10px 10px;
|
|
display: flex;
|
|
justify-content: end;
|
|
white-space: nowrap;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
#select-board-dialog .selectBoardContainer .body .list .item .selected-icon {
|
|
margin-left: auto;
|
|
}
|
|
|
|
#select-board-dialog .selectBoardContainer .body .list .item .details {
|
|
font-size: var(--theia-ui-font-size1);
|
|
opacity: var(--theia-mod-disabled-opacity);
|
|
width: 155px; /* used heuristics for the calculation */
|
|
white-space: pre;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
#select-board-dialog .selectBoardContainer .body .list .item.missing {
|
|
opacity: var(--theia-mod-disabled-opacity);
|
|
}
|
|
|
|
#select-board-dialog .selectBoardContainer .body .list .item:hover {
|
|
background: var(--theia-secondaryButton-hoverBackground);
|
|
}
|
|
|
|
#select-board-dialog .selectBoardContainer .body .list .label {
|
|
max-width: 215px;
|
|
width: 215px;
|
|
white-space: pre;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
#select-board-dialog .selectBoardContainer .body .list {
|
|
max-height: 200px;
|
|
min-height: 200px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
#select-board-dialog .selectBoardContainer .body .ports.list {
|
|
margin: 47px 0px 0px 0px; /* 47 is 37 as input height for the `Boards`, plus 10 margin bottom. */
|
|
}
|
|
|
|
#select-board-dialog .selectBoardContainer .body .search {
|
|
margin-bottom: 10px;
|
|
display: flex;
|
|
align-items: center;
|
|
padding-right: 5px;
|
|
}
|
|
|
|
.p-Widget.dialogOverlay .dialogContent.select-board-dialog {
|
|
width: 500px;
|
|
}
|
|
.arduino-boards-toolbar-item-container {
|
|
margin-left: 3px;
|
|
}
|
|
|
|
.arduino-boards-toolbar-item-container
|
|
.arduino-boards-toolbar-item
|
|
.inner-container {
|
|
display: flex;
|
|
align-items: baseline;
|
|
width: 100%;
|
|
}
|
|
|
|
.arduino-boards-toolbar-item-container
|
|
.arduino-boards-toolbar-item
|
|
.inner-container
|
|
.notAttached {
|
|
width: 10px;
|
|
height: 10px;
|
|
color: red;
|
|
margin: 0 5px;
|
|
}
|
|
|
|
.arduino-boards-toolbar-item-container
|
|
.arduino-boards-toolbar-item
|
|
.inner-container
|
|
.guessed {
|
|
width: 10px;
|
|
height: 10px;
|
|
color: var(--theia-warningBackground);
|
|
margin: 0 5px;
|
|
}
|
|
|
|
.arduino-boards-toolbar-item-container {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 220px;
|
|
}
|
|
|
|
.arduino-boards-toolbar-item .label {
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
margin: 0 5px;
|
|
width: 100%;
|
|
}
|
|
|
|
.arduino-boards-toolbar-item .caret {
|
|
width: 10px;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.arduino-boards-toolbar-item {
|
|
background: var(--theia-tab-unfocusedActiveBackground);
|
|
color: var(--theia-foreground);
|
|
height: 22px;
|
|
display: flex;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
margin: 0px 3px 0px 3px;
|
|
border: 1px solid var(--theia-dropdown-border);
|
|
}
|
|
|
|
.arduino-boards-dropdown-list {
|
|
border: 3px solid var(--theia-activityBar-background);
|
|
margin: -1px;
|
|
z-index: 1;
|
|
border: 1px solid var(--theia-dropdown-border);
|
|
}
|
|
|
|
.arduino-boards-dropdown-item {
|
|
font-size: var(--theia-ui-font-size1);
|
|
display: flex;
|
|
padding: 10px;
|
|
cursor: pointer;
|
|
color: var(--theia-foreground);
|
|
background: var(--theia-tab-unfocusedActiveBackground);
|
|
border: 1px solid var(--theia-tab-unfocusedActiveBackground);
|
|
}
|
|
|
|
.arduino-boards-dropdown-item .fa-check {
|
|
color: var(--theia-arduino-branding-primary);
|
|
align-self: center;
|
|
}
|
|
|
|
.arduino-boards-dropdown-item.selected,
|
|
.arduino-boards-dropdown-item:hover {
|
|
border: 1px solid var(--theia-focusBorder);
|
|
}
|
|
|
|
.arduino-board-dropdown-footer {
|
|
color: var(--theia-arduino-branding-primary);
|
|
border-top: 1px solid var(--theia-dropdown-border);
|
|
}
|