add click handler to whole empty area
This commit is contained in:
parent
ae89f1964f
commit
6868af11cd
1 changed files with 4 additions and 2 deletions
|
@ -288,7 +288,8 @@ module.exports.uploading = function(state, emit) {
|
||||||
|
|
||||||
module.exports.empty = function(state, emit) {
|
module.exports.empty = function(state, emit) {
|
||||||
return html`
|
return html`
|
||||||
<article class="flex flex-col items-center justify-center border-2 border-dashed border-blue-light px-6 py-16 h-full">
|
<article class="flex flex-col items-center justify-center border-2 border-dashed border-blue-light px-6 py-16 h-full"
|
||||||
|
onclick=${() => document.getElementById('file-upload').click()}>
|
||||||
<img src="${assets.get('addfiles.svg')}" width="48" height="48"/>
|
<img src="${assets.get('addfiles.svg')}" width="48" height="48"/>
|
||||||
<div class="pt-6 pb-2 text-center text-lg font-bold uppercase tracking-wide">${state.translate(
|
<div class="pt-6 pb-2 text-center text-lg font-bold uppercase tracking-wide">${state.translate(
|
||||||
'uploadDropDragMessage'
|
'uploadDropDragMessage'
|
||||||
|
@ -301,7 +302,8 @@ module.exports.empty = function(state, emit) {
|
||||||
class="hidden"
|
class="hidden"
|
||||||
type="file"
|
type="file"
|
||||||
multiple
|
multiple
|
||||||
onchange=${add} />
|
onchange=${add}
|
||||||
|
onclick=${e => e.stopPropagation()} />
|
||||||
<label
|
<label
|
||||||
for="file-upload"
|
for="file-upload"
|
||||||
class="rounded bg-blue hover\:bg-blue-dark focus\:bg-blue-darker cursor-pointer text-center text-white py-2 px-6 h-12 mt-4 flex flex-no-shrink items-center justify-center font-semibold"
|
class="rounded bg-blue hover\:bg-blue-dark focus\:bg-blue-darker cursor-pointer text-center text-white py-2 px-6 h-12 mt-4 flex flex-no-shrink items-center justify-center font-semibold"
|
||||||
|
|
Loading…
Reference in a new issue