Merge branch 'accounting' into dev
This commit is contained in:
@@ -144,12 +144,12 @@
|
||||
|
||||
</style>
|
||||
|
||||
<span>
|
||||
<span class="autocomplete">
|
||||
<input type="text" bind:value={candidate.display} {onkeyup} autofocus={autofocus} />
|
||||
{#if candidates && candidates.length > 0}
|
||||
<ul bind:this={list_elem}>
|
||||
<ul bind:this={list_elem} class="suggestions">
|
||||
{#each candidates as candidate,i}
|
||||
<li class="option {selected==i?'highlight':''}" onclick={e => selected = i} ondblclick={e => select(i)}>{candidate.display}</li>
|
||||
<li class="option {selected==i?'highlight':''}" onclick={e => select(i)} ondblclick={e => select(i)}>{candidate.display}</li>
|
||||
{/each}
|
||||
</ul>
|
||||
{/if}
|
||||
|
||||
@@ -542,7 +542,8 @@ select.autocomplete{
|
||||
}
|
||||
|
||||
@media screen and (max-width: 600px) {
|
||||
.grid2{
|
||||
.grid2,
|
||||
.grid3{
|
||||
display: grid;
|
||||
grid-template-columns: auto;
|
||||
}
|
||||
@@ -582,6 +583,10 @@ select.autocomplete{
|
||||
#app nav.expanded .timetracking{
|
||||
grid-column-end: span 2;
|
||||
}
|
||||
|
||||
.autocomplete .suggestions > *{
|
||||
font-size: 1.5em;
|
||||
}
|
||||
}
|
||||
|
||||
fieldset.vcard{
|
||||
|
||||
@@ -711,6 +711,10 @@ select.autocomplete{
|
||||
#app nav.expanded .timetracking{
|
||||
grid-column-end: span 2;
|
||||
}
|
||||
|
||||
.autocomplete .suggestions > *{
|
||||
font-size: 1.5em;
|
||||
}
|
||||
}
|
||||
|
||||
fieldset.vcard{
|
||||
|
||||
@@ -701,6 +701,10 @@ select.autocomplete{
|
||||
#app nav.expanded .timetracking{
|
||||
grid-column-end: span 2;
|
||||
}
|
||||
|
||||
.autocomplete .suggestions > *{
|
||||
font-size: 1.5em;
|
||||
}
|
||||
}
|
||||
|
||||
fieldset.vcard{
|
||||
|
||||
Reference in New Issue
Block a user