noph-ui 0.17.2 → 0.17.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -261,7 +261,9 @@
|
|
|
261
261
|
bind:this={selectElement}
|
|
262
262
|
>
|
|
263
263
|
{#each selectedOption as option, index (index)}
|
|
264
|
-
<option value={option.value} selected={option.selected}
|
|
264
|
+
<option class="np-option" value={option.value} selected={option.selected}
|
|
265
|
+
>{option.label}</option
|
|
266
|
+
>
|
|
265
267
|
{/each}
|
|
266
268
|
</select>
|
|
267
269
|
{:else}
|
|
@@ -595,6 +597,12 @@
|
|
|
595
597
|
}
|
|
596
598
|
}
|
|
597
599
|
|
|
600
|
+
.np-option {
|
|
601
|
+
width: 0;
|
|
602
|
+
height: 0;
|
|
603
|
+
display: block;
|
|
604
|
+
}
|
|
605
|
+
|
|
598
606
|
.no-label .content,
|
|
599
607
|
.field.menu-open .content,
|
|
600
608
|
.field:focus .content,
|