Vanessa 2023-07-10 09:44:27 +08:00
parent 055e3a755d
commit 407a7ee352
2 changed files with 15 additions and 3 deletions

View file

@ -154,10 +154,11 @@
width: 300px;
max-height: 70vh;
.b3-chip {
&__item .b3-chip {
max-width: 196px;
margin: 1px 0;
padding: 6px 12px 6px 14px;
padding-top: 6px;
padding-bottom: 6px;
float: left;
svg {
@ -166,6 +167,17 @@
}
}
.b3-chips {
padding: 0;
input {
outline: none;
border: 0;
background-color: var(--b3-menu-background);
flex: 1;
}
}
.block__icon {
line-height: 20px;
padding: 0 4px;

View file

@ -317,7 +317,7 @@ export const getSelectHTML = (data: IAV, options: { cellElement: HTMLElement })
});
return `<div class="b3-chips">
${selectedHTML}
<input class="b3-text-field fn__block">
<input>
</div>
<div>${filterSelectHTML("", colData.options)}</div>`;
};