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

Merge branch 'master' into rc_smoothing

This commit is contained in:
Sean M 2018-08-11 20:59:00 -04:00
commit f4ea605685
45 changed files with 18196 additions and 463 deletions

View file

@ -255,3 +255,62 @@
#changelog .log p {
margin-bottom: 20px;
}
/* privacy policy block */
#privacy_policy {
width: 500px;
height: 100%;
position: fixed;
right: -495px;
top: 0px;
}
#privacy_policy .wrapper {
height: 100%;
padding: 0 20px;
border-left: 5px solid #ffbb00;
overflow-y: auto;
display: none;
}
#privacy_policy .button {
transform: rotate(270deg);
top: 170px;
right: 450px;
position: absolute;
background: #ffbb00;
border-radius: 5px 5px 0 0;
border-bottom: none;
height: 30px;
}
#privacy_policy .button a {
display: block;
padding: 5px 10px;
width: 100px;
text-align: center;
color: #000;
}
#content.policy_open #privacy_policy {
right: 0px;
background: white;
}
#content.policy_open #privacy_policy .wrapper {
display: block;
}
/* privacy policy content */
#privacy_policy .policy ul {
margin: 5px 0 20px 10px;
}
#privacy_policy .policy li {
font-weight: normal;
margin-bottom: 5px;
}
#privacy_policy .policy p {
margin-bottom: 20px;
}

View file

@ -206,6 +206,22 @@
display: none;
}
.require-msc-supported {
display: none;
}
.tab-onboard_logging.msc-supported .require-msc-supported {
display: block;
}
.require-msc-not-ready {
display: none;
}
.tab-onboard_logging.msc-not-ready .require-msc-not-ready {
display: block;
}
@media only screen and (max-width: 1055px) , only screen and (max-device-width: 1055px) {
.tab-onboard_logging table thead tr:first-child {
font-size: 12px;
@ -300,4 +316,4 @@
pointer-events: none;
text-shadow: none;
opacity: 0.5;
}
}

View file

@ -402,13 +402,17 @@ button {
cursor: pointer;
}
.fontbuttons {
.fontpresets_wrapper {
display: inline-block;
position: absolute;
right: 1.2em;
top: .8em;
}
.fontpresets {
border: 1px solid #cccccc;
}
.tab-osd .switchable-field {
padding: 3px;
border: 1px solid transparent;

View file

@ -222,6 +222,7 @@
margin: 0px;
border-collapse: collapse;
width: 100%;
table-layout: fixed;
}
.tab-pid_tuning .gui_box {
@ -244,12 +245,10 @@
padding: 5px;
text-align: left;
border-right: 1px solid #ccc;
width: 12.5%;
}
.tab-pid_tuning .pid_titlebar th:first-child {
text-align: left;
width: 12.5%;
}
.tab-pid_tuning .pid_titlebar th:last-child {
@ -281,6 +280,10 @@
width: 33%;
}
.tab-pid_tuning table.compensation tr {
height: 25px;
}
.tab-pid_tuning table.compensation td {
width: 60%;
padding-left: 5px;
@ -289,12 +292,24 @@
.tab-pid_tuning table.compensation td:first-child {
width: 10%;
text-align: right;
}
.tab-pid_tuning table.compensation td:last-child {
width: 30%;
}
.tab-pid_tuning table.compensation .suboption {
margin-left: 40px;
}
.tab-pid_tuning table.compensation .suboption select{
text-align-last: left;
font-size: 1.1em;
color: darkslategrey;
padding-left: 5px;
}
.tab-pid_tuning .pidTuningFeatures td {
padding: 5px;
}
@ -320,7 +335,6 @@
.tab-pid_tuning table td {
padding: 1px;
padding-left: 5px;
width: 12.5%;
border-right: 1px solid #ccc;
}