Hide native manufacturer control host

This commit is contained in:
2026-08-05 17:42:41 +02:00
parent 0c5099b48b
commit e68c5d2bc7
3 changed files with 7 additions and 4 deletions
+5 -3
View File
@@ -75,9 +75,11 @@
<div class="manufacturer-options" id="manufacturerOptions" role="listbox"></div> <div class="manufacturer-options" id="manufacturerOptions" role="listbox"></div>
</div> </div>
</div> </div>
<select class="input-like native-manufacturer-select" id="manufacturerSelect" aria-label="Manufacturer" hidden> <div class="native-manufacturer-host" hidden>
<option value="">Select manufacturer</option> <select class="input-like native-manufacturer-select" id="manufacturerSelect" aria-label="Manufacturer">
</select> <option value="">Select manufacturer</option>
</select>
</div>
<div class="mapping-box" id="mappingBox"> <div class="mapping-box" id="mappingBox">
<details class="mapping-details" id="mappingDetails"> <details class="mapping-details" id="mappingDetails">
+1 -1
View File
File diff suppressed because one or more lines are too long
+1
View File
@@ -93,6 +93,7 @@
.select-control .input-like { @apply appearance-none pr-7 pl-9 text-center; } .select-control .input-like { @apply appearance-none pr-7 pl-9 text-center; }
.select-icon { @apply pointer-events-none absolute left-3 top-1/2 z-10 h-4 w-4 -translate-y-1/2 text-slate-300; } .select-icon { @apply pointer-events-none absolute left-3 top-1/2 z-10 h-4 w-4 -translate-y-1/2 text-slate-300; }
.select-chevron { @apply pointer-events-none absolute right-3 top-1/2 h-2 w-2 -translate-y-1/2 rotate-45 border-b-2 border-r-2 text-slate-200; } .select-chevron { @apply pointer-events-none absolute right-3 top-1/2 h-2 w-2 -translate-y-1/2 rotate-45 border-b-2 border-r-2 text-slate-200; }
.native-manufacturer-host { @apply hidden; }
.native-manufacturer-select { @apply hidden; } .native-manufacturer-select { @apply hidden; }
.manufacturer-picker { @apply relative; } .manufacturer-picker { @apply relative; }
.manufacturer-trigger { @apply relative flex h-7 w-full items-center justify-center rounded border border-slate-700 bg-slate-800 px-9 text-center text-[11px] text-slate-200 shadow-sm; } .manufacturer-trigger { @apply relative flex h-7 w-full items-center justify-center rounded border border-slate-700 bg-slate-800 px-9 text-center text-[11px] text-slate-200 shadow-sm; }