Skip to content

Commit

Permalink
Motor wizard fix (betaflight#4197)
Browse files Browse the repository at this point in the history
* Fixed selected color in motor wizards

* removed space

I added it accidentally

* Corrected hover & highlighed color for reorder
  • Loading branch information
YarosMallorca authored and demvlad committed Nov 14, 2024
1 parent f467a9e commit 927965a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/components/EscDshotDirection/Styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -108,16 +108,16 @@

@media (hover: hover) {
#escDshotDirectionDialog-NormalDialog .regular-button.pushed:hover {
background-color: #993333;
background-color: var(--primary-transparent-4);
}

#escDshotDirectionDialog-NormalDialog .regular-button:hover {
background-color: #993333;
background-color: var(--primary-400);
}
}

#escDshotDirectionDialog-MainContent .regular-button.highlighted {
background-color: #EE2222;
background-color: var(--primary-500);
}

#escDshotDirectionDialog-CommandsWrapper {
Expand Down
5 changes: 3 additions & 2 deletions src/css/main.less
Original file line number Diff line number Diff line change
Expand Up @@ -1272,8 +1272,9 @@ dialog {
}
}
.regular-button.pushed {
background-color: var(--primary-400);
color: var(--pushedButton-fontColor);
background-color: var(--primary-transparent-3);
color: var(--text);
border: 1px solid var(--primary-transparent-4);
border-radius: 3px;
}
.danger-button {
Expand Down

0 comments on commit 927965a

Please sign in to comment.