1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-24 16:55:22 +03:00

Merge remote-tracking branch 'origin/master' into dzikuvx-simplify-receiver-tab

This commit is contained in:
Pawel Spychalski (DzikuVx) 2024-04-22 21:06:58 +02:00
commit ea9007ccab
12 changed files with 202 additions and 25 deletions

View file

@ -733,4 +733,34 @@ button {
.osdCustomElement_main_table select, .osdCustomElement_main_table input{
width: 100% !important;
}
.settings .btn a{
margin-top: 0;
margin-bottom: 0;
border-radius: 3px;
color: #fff;
font-family: 'open_sansbold', Arial, serif;
font-size: 12px;
text-shadow: 0 1px rgba(0, 0, 0, 0.25);
cursor: pointer;
transition: all ease 0.2s;
padding: 0 9px;
line-height: 22px;
}
.settings .btn_blue a{
background-color: #37a8db;
border: 1px solid #3394b5;
}
.settings .btn_danger a{
background-color: #e2a2a2;
border: 1px solid #e58383;
}
.settings .btn a:hover {
background-color: #3394b5;
transition: all ease 0.2s;
}