|
3 | 3 | <div class="row justify-content-between">
|
4 | 4 | <div class="col-auto">
|
5 | 5 | <div class="btn-group" role="group">
|
6 |
| - <button type="button" class="btn btn-secondary" |
| 6 | + <button type="button" class="btn btn-secondary btn-sm" |
7 | 7 | v-bind:disabled="backDisabled"
|
8 | 8 | v-bind:title="lang.btn.back"
|
9 | 9 | v-on:click="historyBack()">
|
10 | 10 | <i class="fas fa-step-backward"></i>
|
11 | 11 | </button>
|
12 |
| - <button type="button" class="btn btn-secondary" |
| 12 | + <button type="button" class="btn btn-secondary btn-sm" |
13 | 13 | v-bind:disabled="forwardDisabled"
|
14 | 14 | v-bind:title="lang.btn.forward"
|
15 | 15 | v-on:click="historyForward()">
|
16 | 16 | <i class="fas fa-step-forward"></i>
|
17 | 17 | </button>
|
18 |
| - <button type="button" class="btn btn-secondary" |
| 18 | + <button type="button" class="btn btn-secondary btn-sm" |
19 | 19 | v-on:click="refreshAll()"
|
20 | 20 | v-bind:title="lang.btn.refresh">
|
21 | 21 | <i class="fas fa-sync-alt"></i>
|
22 | 22 | </button>
|
23 | 23 | </div>
|
24 | 24 | <div class="btn-group" role="group">
|
25 |
| - <button type="button" class="btn btn-secondary" |
| 25 | + <button type="button" class="btn btn-secondary btn-sm" |
26 | 26 | v-on:click="showModal('NewFile')"
|
27 | 27 | v-bind:title="lang.btn.file">
|
28 | 28 | <i class="far fa-file"></i>
|
29 | 29 | </button>
|
30 |
| - <button type="button" class="btn btn-secondary" |
| 30 | + <button type="button" class="btn btn-secondary btn-sm" |
31 | 31 | v-on:click="showModal('NewFolder')"
|
32 | 32 | v-bind:title="lang.btn.folder">
|
33 | 33 | <i class="far fa-folder"></i>
|
34 | 34 | </button>
|
35 |
| - <button type="button" class="btn btn-secondary" |
| 35 | + <button type="button" class="btn btn-secondary btn-sm" |
36 | 36 | disabled
|
37 | 37 | v-if="uploading"
|
38 | 38 | v-bind:title="lang.btn.upload">
|
39 | 39 | <i class="fas fa-upload"></i>
|
40 | 40 | </button>
|
41 |
| - <button type="button" class="btn btn-secondary" |
| 41 | + <button type="button" class="btn btn-secondary btn-sm" |
42 | 42 | v-else
|
43 | 43 | v-on:click="showModal('Upload')"
|
44 | 44 | v-bind:title="lang.btn.upload">
|
45 | 45 | <i class="fas fa-upload"></i>
|
46 | 46 | </button>
|
47 |
| - <button type="button" class="btn btn-secondary" |
| 47 | + <button type="button" class="btn btn-secondary btn-sm" |
48 | 48 | v-bind:disabled="!isAnyItemSelected"
|
49 | 49 | v-on:click="showModal('Delete')"
|
50 | 50 | v-bind:title="lang.btn.delete">
|
51 | 51 | <i class="fas fa-trash-alt"></i>
|
52 | 52 | </button>
|
53 | 53 | </div>
|
54 | 54 | <div class="btn-group" role="group">
|
55 |
| - <button type="button" class="btn btn-secondary" |
| 55 | + <button type="button" class="btn btn-secondary btn-sm" |
56 | 56 | v-bind:disabled="!isAnyItemSelected"
|
57 | 57 | v-bind:title="lang.btn.copy"
|
58 | 58 | v-on:click="toClipboard('copy')">
|
59 | 59 | <i class="fas fa-copy"></i>
|
60 | 60 | </button>
|
61 |
| - <button type="button" class="btn btn-secondary" |
| 61 | + <button type="button" class="btn btn-secondary btn-sm" |
62 | 62 | v-bind:disabled="!isAnyItemSelected"
|
63 | 63 | v-bind:title="lang.btn.cut"
|
64 | 64 | v-on:click="toClipboard('cut')">
|
65 | 65 | <i class="fas fa-cut"></i>
|
66 | 66 | </button>
|
67 |
| - <button type="button" class="btn btn-secondary" |
| 67 | + <button type="button" class="btn btn-secondary btn-sm" |
68 | 68 | v-bind:disabled="!clipboardType"
|
69 | 69 | v-bind:title="lang.btn.paste"
|
70 | 70 | v-on:click="paste">
|
71 | 71 | <i class="fas fa-paste"></i>
|
72 | 72 | </button>
|
73 | 73 | </div>
|
74 | 74 | <div class="btn-group" role="group">
|
75 |
| - <button type="button" class="btn btn-secondary" |
| 75 | + <button type="button" class="btn btn-secondary btn-sm" |
76 | 76 | v-bind:title="lang.btn.hidden"
|
77 | 77 | v-on:click="toggleHidden">
|
78 | 78 | <i class="fas" v-bind:class="[hiddenFiles ? 'fa-eye': 'fa-eye-slash']"></i>
|
|
81 | 81 | </div>
|
82 | 82 | <div class="col-auto text-right">
|
83 | 83 | <div class="btn-group" role="group">
|
84 |
| - <button type="button" class="btn btn-secondary" |
| 84 | + <button type="button" class="btn btn-secondary btn-sm" |
85 | 85 | v-bind:class="[viewType === 'table' ? 'active' : '']"
|
86 | 86 | v-on:click="selectView('table')"
|
87 | 87 | v-bind:title="lang.btn.table">
|
88 | 88 | <i class="fas fa-th-list"></i>
|
89 | 89 | </button>
|
90 |
| - <button role="button" class="btn btn-secondary" |
| 90 | + <button role="button" class="btn btn-secondary btn-sm" |
91 | 91 | v-bind:class="[viewType === 'grid' ? 'active' : '']"
|
92 | 92 | v-on:click="selectView('grid')"
|
93 | 93 | v-bind:title="lang.btn.grid">
|
|
0 commit comments