Skip to content

Commit a0cb0cb

Browse files
committed
recorder: match checkboxes to espruino style
1 parent 1edb48e commit a0cb0cb

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

apps/recorder/interface.html

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -729,7 +729,11 @@
729729
<h2>GPS Tracks</h2>`;
730730

731731
if (trackList.length > 0) {
732-
html += `<input type="checkbox" id="select-all"><span>Select all</span>`
732+
html += `
733+
<input type="checkbox" id="select-all">
734+
<i class="form-icon"></i>
735+
<span>Select all</span>
736+
`;
733737
html += `<div class="accordion">`;
734738
trackList.forEach((track, index) => {
735739
const trackData = trackLineToObject(track.info.headers, track.info.l);
@@ -742,6 +746,7 @@ <h2>GPS Tracks</h2>`;
742746
<div class="accordion-item">
743747
<div class="horizontal">
744748
<input type="checkbox" id="track-download-${track.number}" class="select-checkbox">
749+
<i class="form-icon"></i>
745750
<div class="vertical">
746751
<input type="checkbox" id="accordion-track-${track.number}" name="accordion-tracks" hidden>
747752
<label class="accordion-header" for="accordion-track-${track.number}" data-track-index="${index}">
@@ -781,7 +786,8 @@ <h2>Settings</h2>
781786
<div class="form-group">
782787
<label class="form-switch">
783788
<input type="checkbox" id="settings-allow-no-gps" ${localStorage.getItem("recorder-allow-no-gps")=="true" ? "checked" : ""}>
784-
<i class="form-icon"></i> Include GPX/KML entries even when there's no GPS info
789+
<i class="form-icon"></i>
790+
Include GPX/KML entries even when there's no GPS info
785791
</label>
786792
</div>
787793
<div class="form-group">

0 commit comments

Comments
 (0)