1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-21 15:25:36 +03:00

reorganize

This commit is contained in:
cTn 2014-05-16 10:13:30 +02:00
parent ce0600b940
commit 2c91452eee
3 changed files with 34 additions and 31 deletions

View file

@ -293,6 +293,9 @@
"receiverRcExpo": { "receiverRcExpo": {
"message": "RC Expo" "message": "RC Expo"
}, },
"receiverRefreshRateTitle": {
"message": "Graph refresh rate"
},
"receiverButtonSave": { "receiverButtonSave": {
"message": "Save" "message": "Save"
}, },

View file

@ -66,38 +66,9 @@
padding: 0 5px 0 5px; padding: 0 5px 0 5px;
text-align: right; text-align: right;
} }
.tab-receiver #RX_plot {
margin-left: 5px;
height: 200px;
}
.tab-receiver .curves { .tab-receiver .curves {
float: right; float: right;
} }
.tab-receiver .line:nth-child(1) {
stroke: #00A8F0;
}
.tab-receiver .line:nth-child(2) {
stroke: #C0D800;
}
.tab-receiver .line:nth-child(3) {
stroke: #CB4B4B;
}
.tab-receiver .line:nth-child(4) {
stroke: #4DA74D;
}
.tab-receiver .line:nth-child(5) {
stroke: #9440ED;
}
.tab-receiver .line:nth-child(6) {
stroke: #45147A;
}
.tab-receiver .line:nth-child(7) {
stroke: #CF7A26;
}
.tab-receiver .line:nth-child(8) {
stroke: #147A66;
}
.tab-receiver .throttle_curve { .tab-receiver .throttle_curve {
margin: 0 10px 10px 0; margin: 0 10px 10px 0;
@ -150,6 +121,35 @@
border: 1px solid silver; border: 1px solid silver;
} }
.tab-receiver #RX_plot {
margin-left: 5px;
height: 200px;
}
.tab-receiver #RX_plot .line:nth-child(1) {
stroke: #00A8F0;
}
.tab-receiver #RX_plot .line:nth-child(2) {
stroke: #C0D800;
}
.tab-receiver #RX_plot .line:nth-child(3) {
stroke: #CB4B4B;
}
.tab-receiver #RX_plot .line:nth-child(4) {
stroke: #4DA74D;
}
.tab-receiver #RX_plot .line:nth-child(5) {
stroke: #9440ED;
}
.tab-receiver #RX_plot .line:nth-child(6) {
stroke: #45147A;
}
.tab-receiver #RX_plot .line:nth-child(7) {
stroke: #CF7A26;
}
.tab-receiver #RX_plot .line:nth-child(8) {
stroke: #147A66;
}
/* SVG classes*/ /* SVG classes*/
.tab-receiver .grid .tick { .tab-receiver .grid .tick {

View file

@ -82,7 +82,7 @@
</div> </div>
</div> </div>
<div class="clear-both"></div> <div class="clear-both"></div>
<select title="Plot refresh rate" name="rx_refresh_rate"> <select name="rx_refresh_rate" i18n_title="receiverRefreshRateTitle">
<option value="10">10 ms</option> <option value="10">10 ms</option>
<option value="20">20 ms</option> <option value="20">20 ms</option>
<option value="30">30 ms</option> <option value="30">30 ms</option>