Skip to content

Custom colors clean up #1252

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Aug 2, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update some variables
  • Loading branch information
francescospissu committed Aug 1, 2022
commit c041a9c0e193683df7ed7499277108b4d3dd6fd2
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ div#select-board-dialog .selectBoardContainer .body .list .item.selected i {
margin: 0;
vertical-align: top;
display: flex;
color: var(--theia-editor-foreground);
color: var(--theia-input-foreground);
}

#select-board-dialog .selectBoardContainer .body .search input:focus {
Expand Down Expand Up @@ -262,7 +262,7 @@ div#select-board-dialog .selectBoardContainer .body .list .item.selected i {
}

.arduino-board-dropdown-footer {
color: var(--theia-textLink-foreground);
color: var(--theia-secondaryButton-foreground);
border-top: 1px solid var(--theia-dropdown-border);
}

Expand Down
2 changes: 1 addition & 1 deletion arduino-ide-extension/src/browser/style/dialogs.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
font-weight: 500;
background-color: transparent;
font-size: var(--theia-ui-font-size2);
color: var(--theia-list-inactiveSelectionForeground);
color: var(--theia-editorWidget-foreground);
min-height: 0;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
}

.arduino-settings-dialog .react-tabs__tab-list {
border-bottom: 1px solid var(--theia-editorGroupHeader-tabsBorder);
border-color: var(--theia-tab-activeBorder);
}

.arduino-settings-dialog .react-tabs__tab-panel {
Expand Down
3 changes: 2 additions & 1 deletion arduino-ide-extension/src/browser/style/sketchbook.css
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
.active-sketch {
font-weight: 500;
background-color: var(--theia-list-activeSelectionBackground) !important;
color: var(--theia-list-inactiveSelectionForeground) !important;
color: var(--theia-list-activeSelectionForeground) !important;

}

Expand All @@ -69,6 +69,7 @@
.theia-Tree:focus .theia-TreeNode.theia-mod-selected,
.theia-Tree .ReactVirtualized__List:focus .theia-TreeNode.theia-mod-selected {
background: var(--theia-list-inactiveSelectionBackground);
color: var(--theia-list-inactiveSelectionForeground) !important;
}


Expand Down