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:
parent
63c776adfd
commit
2d0f682863
4 changed files with 64 additions and 4 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue