Host our own icons, consolidate on bootstrap 1.13.1

This commit is contained in:
Eli Ribble 2026-02-17 21:36:23 +00:00
parent 50f0327f59
commit dbadb55e7c
No known key found for this signature in database
6 changed files with 10 additions and 24 deletions

View file

@ -199,7 +199,7 @@ class AddressOrReportInput extends HTMLElement {
this.shadowRoot.innerHTML = `
<style>
@import url('/static/css/bootstrap.css');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.0/font/bootstrap-icons.css');
@import url('/static/css/bootstrap-icons.css');
.detail-label {
font-size: 0.8rem;
text-transform: uppercase;
@ -238,7 +238,7 @@ class AddressOrReportInput extends HTMLElement {
</style>
<div class="input-group">
<span class="input-group-text"><i class="bi bi-magnifying-glass"></i></span>
<span class="input-group-text"><i class="bi bi-search"></i></span>
<input type="text" class="form-control form-control-lg" id="addressSearch" maxlength="200" name="address" placeholder="${placeholder}">
<div id="suggestions" class="suggestions-container list-group"></div>
</div>