Adding help icons and improving darkmode css.
parent
9f77e00e17
commit
78b168d8f5
|
@ -6725,5 +6725,20 @@
|
||||||
},
|
},
|
||||||
"firmwareFlasherConfigurationFile": {
|
"firmwareFlasherConfigurationFile": {
|
||||||
"message": "Configuration Filename:"
|
"message": "Configuration Filename:"
|
||||||
|
},
|
||||||
|
"firmwareFlasherRadioProtocolDescription": {
|
||||||
|
"message": "Select the radio protocols you would like included in this build. Note this is a drop down, and multiple items maybe selected."
|
||||||
|
},
|
||||||
|
"firmwareFlasherTelemetryProtocolDescription": {
|
||||||
|
"message": "Select the telemetry protocols you would like included in this build. Note this is a drop down, and multiple items maybe selected. There are also some telemetry protocols that will be enabled, regardless of your selection here based on the radio protocol selected, e.g. CRSF."
|
||||||
|
},
|
||||||
|
"firmwareFlasherOptionsDescription": {
|
||||||
|
"message": "Select the generic options you would like included in this build. Note this is a drop down, and multiple items maybe selected. Such items as fixes, e.g. AKK VTX, are included here."
|
||||||
|
},
|
||||||
|
"firmwareFlasherMotorProtocolDescription": {
|
||||||
|
"message": "Select the motor (ESC) protocols you would like included in this build. Note this is a drop down, and multiple items maybe selected."
|
||||||
|
},
|
||||||
|
"firmwareFlasherBranchDescription": {
|
||||||
|
"message": "Especially useful for developers, you can select a merged PR, specify a commit sha, or specify a 'yet to be merged' PR by typing in: pull/{PR number}/head ."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -315,6 +315,20 @@ button {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.tab-firmware_flasher {
|
.tab-firmware_flasher {
|
||||||
|
.build_configuration {
|
||||||
|
.select2 {
|
||||||
|
color: #424242;
|
||||||
|
.selection {
|
||||||
|
.select2-selection {
|
||||||
|
background-color: #575757;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
select {
|
||||||
|
background-color: #3a3a3a;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
}
|
||||||
.options {
|
.options {
|
||||||
select {
|
select {
|
||||||
background-color: #3a3a3a;
|
background-color: #3a3a3a;
|
||||||
|
|
|
@ -155,15 +155,17 @@
|
||||||
<div style="width: 49%; float: left;">
|
<div style="width: 49%; float: left;">
|
||||||
<strong i18n="firmwareFlasherBuildRadioProtocols"></strong>
|
<strong i18n="firmwareFlasherBuildRadioProtocols"></strong>
|
||||||
<div id="radioProtocolInfo">
|
<div id="radioProtocolInfo">
|
||||||
<select id="radioProtocols" name="radioProtocols" multiple="multiple" class="select2" style="width: 95%; color: #424242">
|
<select id="radioProtocols" name="radioProtocols" multiple="multiple" class="select2" style="width: 95%">
|
||||||
</select>
|
</select>
|
||||||
|
<div class="helpicon cf_tip_wide" i18n_title="firmwareFlasherRadioProtocolDescription"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div style="width: 49%; float: right;">
|
<div style="width: 49%; float: right;">
|
||||||
<strong i18n="firmwareFlasherBuildTelemetryProtocols"></strong>
|
<strong i18n="firmwareFlasherBuildTelemetryProtocols"></strong>
|
||||||
<div id="telemetryProtocolInfo">
|
<div id="telemetryProtocolInfo">
|
||||||
<select id="telemetryProtocols" name="telemetryProtocols" multiple="multiple" class="select2" style="width: 95%; color: #424242">
|
<select id="telemetryProtocols" name="telemetryProtocols" multiple="multiple" class="select2" style="width: 95%">
|
||||||
</select>
|
</select>
|
||||||
|
<div class="helpicon cf_tip_wide" i18n_title="firmwareFlasherTelemetryProtocolDescription"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -173,15 +175,17 @@
|
||||||
<div style="width: 49%; float: left;">
|
<div style="width: 49%; float: left;">
|
||||||
<strong i18n="firmwareFlasherBuildOptions"></strong>
|
<strong i18n="firmwareFlasherBuildOptions"></strong>
|
||||||
<div id="optionsInfo">
|
<div id="optionsInfo">
|
||||||
<select id="options" name="options" multiple="multiple" class="select2" style="width: 95%; color: #424242">
|
<select id="options" name="options" multiple="multiple" class="select2" style="width: 95%">
|
||||||
</select>
|
</select>
|
||||||
|
<div class="helpicon cf_tip_wide" i18n_title="firmwareFlasherOptionsDescription"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div style="width: 49%; float: right;">
|
<div style="width: 49%; float: right;">
|
||||||
<strong i18n="firmwareFlasherBuildMotorProtocols"></strong>
|
<strong i18n="firmwareFlasherBuildMotorProtocols"></strong>
|
||||||
<div id="motorProtocolInfo">
|
<div id="motorProtocolInfo">
|
||||||
<select id="motorProtocols" name="motorProtocols" multiple="multiple" class="select2" style="width: 95%; color: #424242">
|
<select id="motorProtocols" name="motorProtocols" multiple="multiple" class="select2" style="width: 95%">
|
||||||
</select>
|
</select>
|
||||||
|
<div class="helpicon cf_tip_wide" i18n_title="firmwareFlasherMotorProtocolDescription"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -191,8 +195,9 @@
|
||||||
<div style="width: 49%; float: left;">
|
<div style="width: 49%; float: left;">
|
||||||
<strong i18n="firmwareFlasherBranch"></strong>
|
<strong i18n="firmwareFlasherBranch"></strong>
|
||||||
<div id="branchInfo">
|
<div id="branchInfo">
|
||||||
<select id="commits" name="commits" class="select2" style="width: 95%; color: #424242">
|
<select id="commits" name="commits" class="select2" style="width: 95%">
|
||||||
</select>
|
</select>
|
||||||
|
<div class="helpicon cf_tip_wide" i18n_title="firmwareFlasherBranchDescription"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue