1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-25 17:25:16 +03:00

Add visual info about pdop quality (#4343)

fix display of magnetic declination

swapped moderate and fair :)

remove not needed href for latlon

revert remove not needed href for latlon
This commit is contained in:
Mark Haslinghuis 2025-02-13 15:45:25 +01:00 committed by GitHub
parent 63c776adfd
commit 2d0f682863
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 64 additions and 4 deletions

View file

@ -1512,6 +1512,31 @@ table {
&.ready {
background-color: var(--success-500);
}
&.ideal {
// should be blue
background-color: blue;
}
&.excellent {
// should be green
background-color: var(--success-500);
}
&.good {
// should be orange
background-color: var(--warning-500);
}
&.moderate {
// should be yellow
background-color: var(--primary-500);
color: black;
}
&.fair {
// should be red
background-color: var(--error-500);
}
&.poor {
// should be gray
background-color: var(--surface-500);
}
}
.buildInfoBtn {
position: relative;