Skip to content

Commit

Permalink
add browser module support
Browse files Browse the repository at this point in the history
  • Loading branch information
lian-yue committed Mar 12, 2024
1 parent cec072b commit d4b2746
Show file tree
Hide file tree
Showing 23 changed files with 7,539 additions and 17 deletions.
2,395 changes: 2,395 additions & 0 deletions dist/vue-upload-component.esm.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/vue-upload-component.esm.js.map

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions dist/vue-upload-component.esm.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/vue-upload-component.esm.min.js.map

Large diffs are not rendered by default.

36 changes: 36 additions & 0 deletions dist/vue-upload-component.esm.part.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@

.file-uploads {
overflow: hidden;
position: relative;
text-align: center;
display: inline-block;
}

.file-uploads.file-uploads-html4 input,
.file-uploads.file-uploads-html5 label {
/* background fix ie click */
background: #fff;
opacity: 0;
font-size: 20em;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
position: absolute;
width: 100%;
height: 100%;
}

.file-uploads.file-uploads-html5 input,
.file-uploads.file-uploads-html4 label {
/* background fix ie click */
position: absolute;
background: rgba(255, 255, 255, 0);
overflow: hidden;
position: fixed;
width: 1px;
height: 1px;
z-index: -1;
opacity: 0;
}
Loading

0 comments on commit d4b2746

Please sign in to comment.