Skip to content

Commit

Permalink
Update UI for basic dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
hiddewie committed Nov 2, 2024
1 parent 9f4756a commit 55779c3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions proxy/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div id="search-backdrop" class="modal backdrop" tabindex="-1" role="dialog">
<div class="modal-dialog modal-lg modal-dialog-scrollable" role="document">
<div class="modal-content">
<div class="modal-header bg-light">
<div class="modal-header">
<h5 class="modal-title">Search</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close" onclick="hideSearch()"></button>
</div>
Expand Down Expand Up @@ -94,7 +94,7 @@ <h5 class="modal-title">Search</h5>
<div id="configuration-backdrop" class="modal backdrop" tabindex="-1" role="dialog">
<div class="modal-dialog modal-dialog-scrollable modal-lg" role="document">
<div class="modal-content">
<div class="modal-header bg-light">
<div class="modal-header">
<h5 class="modal-title">Map configuration</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close" onclick="hideConfiguration()"></button>
</div>
Expand All @@ -116,13 +116,13 @@ <h5 class="modal-title">Map configuration</h5>
</div>
<div class="mb-3">
<label for="backgroundUrl" class="form-label" >Background map tile URL</label>
<div>
<div class="mb-1">
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="backgroundType" id="backgroundTypeRaster" value="raster" checked onchange="updateConfiguration('backgroundType', 'raster'); updateBackgroundMapStyle();">
<label class="form-check-label" for="backgroundTypeRaster">Raster</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="backgroundType" id="backgroundTypeVector" value="raster" checked onchange="updateConfiguration('backgroundType', 'vector'); updateBackgroundMapStyle();">
<input class="form-check-input" type="radio" name="backgroundType" id="backgroundTypeVector" value="raster" onchange="updateConfiguration('backgroundType', 'vector'); updateBackgroundMapStyle();">
<label class="form-check-label" for="backgroundTypeVector">Vector</label>
</div>
</div>
Expand Down

0 comments on commit 55779c3

Please sign in to comment.