mirror of https://github.com/VERT-sh/VERT.git
fix: dropdown & language fixex
This commit is contained in:
parent
428e6fd6a6
commit
6b8967f49a
|
@ -47,7 +47,7 @@
|
||||||
"convert_all": "Convertir todo",
|
"convert_all": "Convertir todo",
|
||||||
"download_all": "Comprimir todo",
|
"download_all": "Comprimir todo",
|
||||||
"remove_all": "Quitar todos los archivos",
|
"remove_all": "Quitar todos los archivos",
|
||||||
"set_all_to": "Marcar todos:",
|
"set_all_to": "Cambiar todos a",
|
||||||
"na": "N/A"
|
"na": "N/A"
|
||||||
},
|
},
|
||||||
"tooltips": {
|
"tooltips": {
|
||||||
|
|
|
@ -101,7 +101,7 @@
|
||||||
{/each}
|
{/each}
|
||||||
</div>
|
</div>
|
||||||
<ChevronDown
|
<ChevronDown
|
||||||
class="w-4 h-4 ml-4 mt-0.5 flex-shrink-0"
|
class="w-4 h-4 ml-3 mt-0.5 flex-shrink-0"
|
||||||
style="transform: rotate({open
|
style="transform: rotate({open
|
||||||
? 180
|
? 180
|
||||||
: 0}deg); transition: transform {duration}ms {transition};"
|
: 0}deg); transition: transform {duration}ms {transition};"
|
||||||
|
|
|
@ -288,7 +288,7 @@
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
<ChevronDown
|
<ChevronDown
|
||||||
class="w-4 h-4 ml-4 mt-0.5 flex-shrink-0"
|
class="w-4 h-4 ml-3 mt-0.5 flex-shrink-0"
|
||||||
style="transform: rotate({open
|
style="transform: rotate({open
|
||||||
? 180
|
? 180
|
||||||
: 0}deg); transition: transform {duration}ms {transition};"
|
: 0}deg); transition: transform {duration}ms {transition};"
|
||||||
|
@ -364,8 +364,11 @@
|
||||||
{#each filteredData.formats as format}
|
{#each filteredData.formats as format}
|
||||||
<button
|
<button
|
||||||
class="w-full p-2 text-center rounded-xl
|
class="w-full p-2 text-center rounded-xl
|
||||||
{format === selected ? 'bg-accent text-black' : 'hover:bg-panel'}
|
{format === selected
|
||||||
{format === from ? 'bg-separator' : ''}"
|
? 'bg-accent text-black'
|
||||||
|
: format === from
|
||||||
|
? 'bg-separator'
|
||||||
|
: 'hover:bg-panel'}"
|
||||||
onclick={() => selectOption(format)}
|
onclick={() => selectOption(format)}
|
||||||
>
|
>
|
||||||
{format}
|
{format}
|
||||||
|
|
Loading…
Reference in New Issue