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

Merge pull request #316 from skaman82/NewPIDFunctions

Shortening labels for sensor alignments to fit better on small screens
This commit is contained in:
Albert Kravcov 2016-01-07 03:47:55 +01:00
commit fb5d2678b6
3 changed files with 9 additions and 11 deletions

View file

@ -479,13 +479,13 @@
"message": "Yaw Degrees" "message": "Yaw Degrees"
}, },
"configurationSensorAlignmentGyro": { "configurationSensorAlignmentGyro": {
"message": "Gyroscope Alignment" "message": "GYRO Alignment"
}, },
"configurationSensorAlignmentAcc": { "configurationSensorAlignmentAcc": {
"message": "Accelerometer Alignment" "message": "ACCEL Alignment"
}, },
"configurationSensorAlignmentMag": { "configurationSensorAlignmentMag": {
"message": "Compass/Magnetometer Alignment" "message": "MAG Alignment"
}, },
"configurationAccelTrims": { "configurationAccelTrims": {
"message": "Accelerometer Trim" "message": "Accelerometer Trim"

View file

@ -365,7 +365,7 @@
.tab-configuration .board select { .tab-configuration .board select {
/*float: left;*/ /*float: left;*/
width: 50%; width: 45%;
height: 20px; height: 20px;
margin: 0 0px 2px 0; margin: 0 0px 2px 0;
border: 1px solid silver; border: 1px solid silver;
@ -444,17 +444,17 @@
} }
.tab-configuration .sensoralignment { .tab-configuration .sensoralignment {
width: 60%; width: 50%;
float: left; float: left;
} }
.tab-configuration .board_align_content { .tab-configuration .board_align_content {
width: 40%; width: 50%;
float: left; float: left;
} }
.tab-configuration .sensoralignment span { .tab-configuration .sensoralignment span {
width: 50%; width: 55%;
float: left; float: left;
} }

View file

@ -57,15 +57,13 @@
</tr> </tr>
<tr> <tr>
<td> <td>
<div class="cf_tip"> <div class="cf_tip" i18n_title="receiverHelpDeadband">
<input type="number" name="deadband" step="1" min="0" max="32" /> <input type="number" name="deadband" step="1" min="0" max="32" />
<div class="cf_tooltiptext" style="display:none;" i18n="receiverHelpDeadband"></div>
</div> </div>
</td> </td>
<td> <td>
<div class="cf_tip"> <div class="cf_tip" i18n_title="receiverHelpYawDeadband">
<input type="number" name="yaw_deadband" step="1" min="0" max="100" /> <input type="number" name="yaw_deadband" step="1" min="0" max="100" />
<div class="cf_tooltiptext" style="display:none;" i18n="receiverHelpYawDeadband"></div>
</div> </div>
</td> </td>
</tr> </tr>