Skip to content

Commit

Permalink
Fixed header formatting (text didn't fit in line after addition of QR…
Browse files Browse the repository at this point in the history
…T/QSY).
  • Loading branch information
Brian Mathews authored and Brian Mathews committed Nov 24, 2024
1 parent 36984eb commit 3a1df43
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion firmware/webtools/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "SOTACAT for Elecraft KX2 and KX3",
"version": "2024-11-03_21:19-Release",
"version": "2024-11-23_21:13-Release",
"builds": [
{
"chipFamily": "ESP32-C3",
Expand Down
2 changes: 1 addition & 1 deletion include/build_info.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define BUILD_DATE_TIME "241103:2119"
#define BUILD_DATE_TIME "241123:2113"
9 changes: 6 additions & 3 deletions src/web/sota.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<h2 class="contentPageHeaderContainer">
<span class="spotsTableTitle"
>Spots in the past:
>Spots in past:
<!-- Dropdown for refresh intervals -->
<select
id="historyDurationSelector"
class="historyDurationDropdown"
aria-label="History duration"
onchange="refreshSotaPotaJson(true); saveHistoryDurationState();"
>
<option value="-1" selected>1 hour</option>
Expand Down Expand Up @@ -42,10 +43,12 @@ <h2 class="contentPageHeaderContainer">
<th><span data-sort-field="timestamp">UTC</span></th>
<th><span data-sort-field="point">Summit</span></th>
<th><span data-sort-field="distance">Dist</span></th>
<th><span data-sort-field="mode">Mode</span>
<th>
<span data-sort-field="mode">Mode</span>
<select
id="modeFilter"
onchange="changeModeFilter(this.value); saveModeFilterState();">
onchange="changeModeFilter(this.value); saveModeFilterState();"
>
<option value="All" selected="true">All</option>
<option value="CW">CW</option>
<option value="SSB">SSB</option>
Expand Down
2 changes: 1 addition & 1 deletion src/web/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ table, th, td {
}

.spotsTableTitle {
font-size: var(--font-size-large);
font-size: var(--font-size-medium);
font-family: Arial, sans-serif;
font-weight: 600;
background-color: var(--bg-secondary);
Expand Down

0 comments on commit 3a1df43

Please sign in to comment.