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

Fixed dataflash indicator in the top row (#4135)

This commit is contained in:
Yaros 2024-08-17 21:20:25 +02:00 committed by GitHub
parent c7c8c8cd1d
commit 91ccf7589e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 19 additions and 17 deletions

View file

@ -455,22 +455,25 @@ input[type="number"] {
flex-direction: column;
gap: 0.5rem;
padding: 0.5rem;
background-color: var(--surface-300);
border-radius: 0.5rem;
li {
background-color: var(--surface-600);
height: 0.35rem;
position: relative;
border-radius: 999px;
width: 100% !important;
}
background-color: var(--surface-300);
.notsupported_global {
display: none;
}
progress {
height: 0.35rem;
border-radius: 12px;
appearance: none;
-webkit-appearance: none;
overflow: hidden;
&::-webkit-progress-bar {
height: 8px;
background-color: var(--surface-300);
background-color: var(--surface-500);
}
&::-webkit-progress-value {
background-color: var(--primary-500);
border-radius: 0 12px 12px 0;
}
}
}