bfg-common 1.4.534 → 1.4.535
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -40,27 +40,22 @@
|
|
|
40
40
|
>
|
|
41
41
|
{{ localization.common.sendAltCommand }}
|
|
42
42
|
</button>
|
|
43
|
-
<label
|
|
44
|
-
for="upload-folder"
|
|
45
|
-
class="vmw-drawer-body__btn animation toggle-fullscreen"
|
|
46
|
-
>
|
|
43
|
+
<label class="vmw-drawer-body__btn animation relative">
|
|
47
44
|
{{ localization.remoteConsole.uploadFolder }}
|
|
45
|
+
<input
|
|
46
|
+
type="file"
|
|
47
|
+
webkitdirectory
|
|
48
|
+
directory
|
|
49
|
+
multiple
|
|
50
|
+
/>
|
|
48
51
|
</label>
|
|
49
|
-
<
|
|
50
|
-
id="upload-folder"
|
|
51
|
-
type="file"
|
|
52
|
-
webkitdirectory
|
|
53
|
-
directory
|
|
54
|
-
multiple
|
|
55
|
-
/>
|
|
56
|
-
|
|
57
|
-
<label
|
|
58
|
-
for="upload-files"
|
|
59
|
-
class="vmw-drawer-body__btn animation toggle-fullscreen"
|
|
60
|
-
>
|
|
52
|
+
<label class="vmw-drawer-body__btn animation relative">
|
|
61
53
|
{{ localization.remoteConsole.uploadFiles }}
|
|
54
|
+
<input
|
|
55
|
+
type="file"
|
|
56
|
+
multiple
|
|
57
|
+
/>
|
|
62
58
|
</label>
|
|
63
|
-
<input id="upload-files" type="file" multiple />
|
|
64
59
|
|
|
65
60
|
<select
|
|
66
61
|
v-model="codec"
|
|
@@ -274,8 +269,13 @@ displaySizeInfo()
|
|
|
274
269
|
cursor: not-allowed;
|
|
275
270
|
}
|
|
276
271
|
|
|
277
|
-
input[type=
|
|
278
|
-
|
|
272
|
+
input[type="file"] {
|
|
273
|
+
position: absolute;
|
|
274
|
+
top: 0;
|
|
275
|
+
left: 0;
|
|
276
|
+
right: 0;
|
|
277
|
+
bottom: 0;
|
|
278
|
+
opacity: 0;
|
|
279
279
|
}
|
|
280
280
|
}
|
|
281
281
|
|