-
Notifications
You must be signed in to change notification settings - Fork 327
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Small ui fixes in wizart and defaults dialog
- Loading branch information
Showing
8 changed files
with
56 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,4 @@ | ||
<div class="defaults-dialog__bottom_buttons"> | ||
<div class="btn default_btn narrow green"> | ||
<a id="wizard-next" href="#">Next</a> | ||
</div> | ||
<div class="btn default_btn narrow"> | ||
<a id="wizard-skip" href="#">Skip</a> | ||
</div> | ||
<div class="d-flex gap-2 justify-content-end mt-auto"> | ||
<button id="wizard-skip" class="btn btn-outline-primary">Skip</button> | ||
<button id="wizard-next" class="btn btn-primary">Next</button> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
<h2>Filters wizard</h2> | ||
<h3>Filters wizard</h3> | ||
<hr class="mt-0"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,22 @@ | ||
<h2>GPS wizard</h2> | ||
<p> | ||
<h3>GPS wizard</h3> | ||
<hr class="mt-0"> | ||
|
||
<div class="alert alert-info"> | ||
Configure GPS and port. If you unsure about serial port or protocol, click `Skip` to go to the next page. | ||
You can change those settings later with the configurator UI. If no GPS installed, choose <b>None</b>. | ||
</p> | ||
<div> | ||
<label for="wizard-gps-port">GPS Serial Port</label><select id="wizard-gps-port"></select> | ||
</div> | ||
<div style="display: none;" id="wizard-gps-baud-container"> | ||
<label for="wizard-gps-baud">GPS Baud Rate</label><select id="wizard-gps-baud"></select> | ||
|
||
<div class="hstack mb-3"> | ||
<select id="wizard-gps-port" class="form-select w-12r"></select> | ||
<label for="wizard-gps-port">GPS Serial Port</label> | ||
</div> | ||
<div style="display: none;" id="wizard-gps-protocol-container"> | ||
<label for="wizard-gps-protocol">GPS Protocol</label><select id="wizard-gps-protocol"></select> | ||
|
||
<div style="display: none;" class="hstack mb-3" id="wizard-gps-baud-container"> | ||
<select id="wizard-gps-baud" class="form-select w-12r"></select> | ||
<label for="wizard-gps-baud">GPS Baud Rate</label> | ||
</div> | ||
|
||
<div style="display: none;" class="hstack mb-3" id="wizard-gps-protocol-container"> | ||
<select id="wizard-gps-protocol" class="form-select w-12r"></select> | ||
<label for="wizard-gps-protocol">GPS Protocol</label> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
<h2>PIDs wizard</h2> | ||
<h3>PIDs wizard</h3> | ||
<hr class="mt-0"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,17 @@ | ||
<h2>Receiver wizard</h2> | ||
<p> | ||
<h3>Receiver wizard</h3> | ||
<hr class="mt-0"> | ||
|
||
<div class="alert alert-info"> | ||
Configure receiver serial port and protocol. If you unsure about serial port or protocol, click `Skip` to go to the next page. | ||
You can change those settings later with the configurator UI. | ||
</p> | ||
<div> | ||
<label for="wizard-receiver-port">Receiver Serial Port</label><select id="wizard-receiver-port"></select> | ||
</div> | ||
<div> | ||
<label for="wizard-receiver-protocol">Receiver Protocol</label><select id="wizard-receiver-protocol" data-setting="serialrx_provider"></select> | ||
|
||
<div class="hstack mb-3"> | ||
<select id="wizard-receiver-port" class="form-select w-12r"></select> | ||
<label for="wizard-receiver-port">Receiver Serial Port</label> | ||
</div> | ||
|
||
<div class="hstack mb-3"> | ||
<select id="wizard-receiver-protocol" data-setting="serialrx_provider" class="form-select w-12r"></select> | ||
<label for="wizard-receiver-protocol">Receiver Protocol</label> | ||
</div> |