1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-26 09:45:28 +03:00

Motor wizard fix (#4197)

* Fixed selected color in motor wizards

* removed space

I added it accidentally

* Corrected hover & highlighed color for reorder
This commit is contained in:
Yaros 2024-10-02 22:32:23 +02:00 committed by GitHub
parent bcdd15cbeb
commit 1748738d35
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 5 deletions

View file

@ -108,16 +108,16 @@
@media (hover: hover) { @media (hover: hover) {
#escDshotDirectionDialog-NormalDialog .regular-button.pushed:hover { #escDshotDirectionDialog-NormalDialog .regular-button.pushed:hover {
background-color: #993333; background-color: var(--primary-transparent-4);
} }
#escDshotDirectionDialog-NormalDialog .regular-button:hover { #escDshotDirectionDialog-NormalDialog .regular-button:hover {
background-color: #993333; background-color: var(--primary-400);
} }
} }
#escDshotDirectionDialog-MainContent .regular-button.highlighted { #escDshotDirectionDialog-MainContent .regular-button.highlighted {
background-color: #EE2222; background-color: var(--primary-500);
} }
#escDshotDirectionDialog-CommandsWrapper { #escDshotDirectionDialog-CommandsWrapper {

View file

@ -1272,8 +1272,9 @@ dialog {
} }
} }
.regular-button.pushed { .regular-button.pushed {
background-color: var(--primary-400); background-color: var(--primary-transparent-3);
color: var(--pushedButton-fontColor); color: var(--text);
border: 1px solid var(--primary-transparent-4);
border-radius: 3px; border-radius: 3px;
} }
.danger-button { .danger-button {