@scaleflex/widget-provider-views 4.0.7 → 4.1.0
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.
- package/CHANGELOG.md +8268 -8256
- package/LICENSE +21 -21
- package/README.md +44 -44
- package/dist/style.css +540 -424
- package/dist/style.min.css +1 -1
- package/lib/components/SearchProviderView/SearchProviderView.js +6 -6
- package/lib/index.js +46 -46
- package/lib/style/filerobot-ProviderBrowser-layoutType--grid.scss +233 -233
- package/lib/style/filerobot-ProviderBrowser-layoutType--list.scss +190 -190
- package/lib/style/filerobot-ProviderBrowserItem-details.scss +207 -207
- package/lib/style.scss +309 -309
- package/lib/utils/View.js +6 -6
- package/package.json +5 -5
- package/types/index.d.ts +28 -28
package/dist/style.css
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
1
2
|
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
|
|
2
3
|
.filerobot-ProviderBrowser-layoutType--grid ul.filerobot-ProviderBrowser-list::after {
|
|
3
|
-
content:
|
|
4
|
-
flex: auto;
|
|
5
|
-
|
|
4
|
+
content: "";
|
|
5
|
+
flex: auto;
|
|
6
|
+
}
|
|
6
7
|
.filerobot-ProviderBrowser-layoutType--grid ul.filerobot-ProviderBrowser-list:focus {
|
|
7
|
-
outline: none;
|
|
8
|
-
|
|
8
|
+
outline: none;
|
|
9
|
+
}
|
|
9
10
|
.filerobot-ProviderBrowser-layoutType--grid .filerobot-Provider-ItemCategory-header {
|
|
10
11
|
display: flex;
|
|
11
12
|
align-items: center;
|
|
@@ -15,43 +16,51 @@
|
|
|
15
16
|
padding: 0 12px;
|
|
16
17
|
margin-top: 12px;
|
|
17
18
|
cursor: pointer;
|
|
18
|
-
font-size: 12px;
|
|
19
|
-
|
|
19
|
+
font-size: 12px;
|
|
20
|
+
}
|
|
20
21
|
.filerobot-ProviderBrowser-layoutType--grid .filerobot-Provider-ItemCategory-wrapper {
|
|
21
|
-
padding: 8px 24px 12px;
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
22
|
+
padding: 8px 24px 12px;
|
|
23
|
+
}
|
|
24
|
+
.filerobot-ProviderBrowser-layoutType--grid .filerobot-Provider-ItemCategory-wrapper-list {
|
|
25
|
+
list-style: none;
|
|
26
|
+
padding: 0;
|
|
27
|
+
width: 100%;
|
|
28
|
+
display: grid;
|
|
29
|
+
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
|
30
|
+
}
|
|
29
31
|
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem {
|
|
30
32
|
min-width: 200px;
|
|
31
33
|
position: relative;
|
|
32
|
-
margin: 0;
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
34
|
+
margin: 0;
|
|
35
|
+
}
|
|
36
|
+
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem::before {
|
|
37
|
+
content: "";
|
|
38
|
+
padding-top: 88%;
|
|
39
|
+
display: block;
|
|
40
|
+
}
|
|
41
|
+
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem--selected.item-folder .filerobot-ProviderBrowserItem-folderSelectBox, .filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem.item-folder:hover .filerobot-ProviderBrowserItem-folderSelectBox {
|
|
42
|
+
display: flex;
|
|
43
|
+
}
|
|
44
|
+
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem:not(.filerobot-ProviderBrowserItem--beingRenamed):hover .filerobot-Explorer-dots-menu-icon {
|
|
45
|
+
display: block;
|
|
46
|
+
}
|
|
47
|
+
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem:not(.item-folder) {
|
|
48
|
+
outline: none;
|
|
49
|
+
border: 4px solid transparent;
|
|
50
|
+
}
|
|
51
|
+
[data-filerobot-theme=dark] .filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem:not(.item-folder) {
|
|
52
|
+
border: 4px solid #000;
|
|
53
|
+
background-color: #4D4E4E;
|
|
54
|
+
}
|
|
55
|
+
[data-filerobot-theme=dark] .filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem:not(.item-folder):hover *, [data-filerobot-theme=dark] .filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem:not(.item-folder):focus * {
|
|
56
|
+
color: #000;
|
|
57
|
+
}
|
|
58
|
+
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem:not(.item-folder).no-selection .filerobot-ProviderBrowserItem-inner {
|
|
59
|
+
cursor: auto;
|
|
60
|
+
}
|
|
61
|
+
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem:not(.item-folder):not(.no-selection) .filerobot-ProviderBrowserItem-inner:hover {
|
|
62
|
+
background-color: #EFF3F6;
|
|
63
|
+
}
|
|
55
64
|
.filerobot-ProviderBrowser-layoutType--grid .filerobot-ProviderBrowserItem-videoDuration {
|
|
56
65
|
position: absolute;
|
|
57
66
|
bottom: 33%;
|
|
@@ -65,38 +74,41 @@
|
|
|
65
74
|
line-height: 12px;
|
|
66
75
|
font-size: 11px;
|
|
67
76
|
box-shadow: 0px 1px 2px 0px rgba(77, 78, 78, 0.15);
|
|
68
|
-
color: #fff !important;
|
|
69
|
-
|
|
77
|
+
color: #fff !important;
|
|
78
|
+
}
|
|
70
79
|
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem--selected .filerobot-ProviderBrowserItem-inner {
|
|
71
|
-
background-color: #5D6D7E !important;
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
80
|
+
background-color: #5D6D7E !important;
|
|
81
|
+
}
|
|
82
|
+
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem--selected .filerobot-ProviderBrowserItem-inner * {
|
|
83
|
+
fill: #fff;
|
|
84
|
+
color: #fff;
|
|
85
|
+
}
|
|
76
86
|
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem--selected.with-meta input {
|
|
77
87
|
text-align: center;
|
|
78
88
|
color: #000 !important;
|
|
79
89
|
margin-top: 4px;
|
|
80
|
-
margin-bottom: -1px;
|
|
81
|
-
|
|
90
|
+
margin-bottom: -1px;
|
|
91
|
+
}
|
|
82
92
|
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem--selected.with-meta button.filerobot-ProviderBrowserItem-inner:focus {
|
|
83
|
-
box-shadow: none !important;
|
|
84
|
-
|
|
93
|
+
box-shadow: none !important;
|
|
94
|
+
}
|
|
85
95
|
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem--selected .filerobot-Explorer-Item-fileInfoAndButtons {
|
|
86
|
-
background-color: inherit;
|
|
87
|
-
|
|
96
|
+
background-color: inherit;
|
|
97
|
+
}
|
|
88
98
|
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem--noPreview .filerobot-ProviderBrowserItem-inner {
|
|
89
|
-
background-color: rgba(147, 147, 147, 0.2);
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
99
|
+
background-color: rgba(147, 147, 147, 0.2);
|
|
100
|
+
}
|
|
101
|
+
[data-filerobot-theme=dark] .filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem--noPreview .filerobot-ProviderBrowserItem-inner {
|
|
102
|
+
background-color: rgba(234, 234, 234, 0.2);
|
|
103
|
+
}
|
|
93
104
|
.filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem--noPreview svg {
|
|
94
105
|
fill: rgba(0, 0, 0, 0.7);
|
|
95
106
|
width: 30%;
|
|
96
|
-
height: 30%;
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
107
|
+
height: 30%;
|
|
108
|
+
}
|
|
109
|
+
[data-filerobot-theme=dark] .filerobot-ProviderBrowser-layoutType--grid li.filerobot-ProviderBrowserItem--noPreview svg {
|
|
110
|
+
fill: rgba(255, 255, 255, 0.8);
|
|
111
|
+
}
|
|
100
112
|
.filerobot-ProviderBrowser-layoutType--grid button.filerobot-ProviderBrowserItem-inner {
|
|
101
113
|
overflow: hidden;
|
|
102
114
|
position: absolute;
|
|
@@ -107,258 +119,303 @@
|
|
|
107
119
|
height: 100%;
|
|
108
120
|
border-radius: 2px;
|
|
109
121
|
box-shadow: 0px 1px 2px 0px rgba(77, 78, 78, 0.15);
|
|
110
|
-
background-color: #EFF3F6;
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
122
|
+
background-color: #EFF3F6;
|
|
123
|
+
}
|
|
124
|
+
.filerobot-ProviderBrowser-layoutType--grid button.filerobot-ProviderBrowserItem-inner:focus {
|
|
125
|
+
outline: none;
|
|
126
|
+
}
|
|
127
|
+
.filerobot-ProviderBrowser-layoutType--grid button.filerobot-ProviderBrowserItem-inner.with-meta {
|
|
128
|
+
display: flex;
|
|
129
|
+
flex-direction: column-reverse;
|
|
130
|
+
align-items: center;
|
|
131
|
+
justify-content: flex-end;
|
|
132
|
+
}
|
|
133
|
+
.filerobot-ProviderBrowser-layoutType--grid button.filerobot-ProviderBrowserItem-inner.with-meta:focus {
|
|
134
|
+
box-shadow: none;
|
|
135
|
+
}
|
|
136
|
+
.filerobot-ProviderBrowser-layoutType--grid button.filerobot-ProviderBrowserItem-inner.with-meta img {
|
|
137
|
+
-o-object-fit: contain;
|
|
138
|
+
object-fit: contain;
|
|
139
|
+
width: 100%;
|
|
140
|
+
height: 100%;
|
|
141
|
+
max-width: 100%;
|
|
142
|
+
max-height: 100%;
|
|
143
|
+
}
|
|
128
144
|
.filerobot-ProviderBrowser-layoutType--grid .filerobot-ProviderBrowserItem-fakeCheckbox {
|
|
129
145
|
display: none;
|
|
130
146
|
position: absolute;
|
|
131
147
|
z-index: 3;
|
|
132
148
|
top: 8px;
|
|
133
|
-
left: 8px;
|
|
134
|
-
|
|
149
|
+
left: 8px;
|
|
150
|
+
}
|
|
135
151
|
.filerobot-ProviderBrowser-layoutType--grid .filerobot-ProviderBrowserItem-folderSelectBox {
|
|
136
152
|
top: 26px;
|
|
137
153
|
left: 14px;
|
|
138
154
|
position: absolute;
|
|
139
|
-
display: none;
|
|
155
|
+
display: none;
|
|
156
|
+
}
|
|
140
157
|
|
|
141
158
|
.filerobot-ProviderBrowserItem--selected .filerobot-ProviderBrowserItem-fakeCheckbox {
|
|
142
|
-
display: block;
|
|
159
|
+
display: block;
|
|
160
|
+
}
|
|
143
161
|
|
|
144
162
|
*:hover > .filerobot-ProviderBrowserItem-fakeCheckbox {
|
|
145
|
-
display: block;
|
|
163
|
+
display: block;
|
|
164
|
+
}
|
|
146
165
|
|
|
147
166
|
.filerobot-Dragging-folders > *,
|
|
148
167
|
.filerobot-Dragging-files > * {
|
|
149
|
-
pointer-events: none;
|
|
168
|
+
pointer-events: none;
|
|
169
|
+
}
|
|
150
170
|
|
|
151
171
|
.filerobot-ProviderBrowser-layoutType--list,
|
|
152
172
|
.filerobot-ProviderBrowser-layoutType--tiles {
|
|
153
|
-
background-color: #fff;
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
173
|
+
background-color: #fff;
|
|
174
|
+
}
|
|
175
|
+
[data-filerobot-theme=dark] .filerobot-ProviderBrowser-layoutType--list,
|
|
176
|
+
[data-filerobot-theme=dark] .filerobot-ProviderBrowser-layoutType--tiles {
|
|
177
|
+
background-color: #1f1f1f;
|
|
178
|
+
}
|
|
179
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-list-cell,
|
|
180
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-list-cell {
|
|
181
|
+
text-overflow: ellipsis;
|
|
182
|
+
white-space: nowrap;
|
|
183
|
+
overflow: hidden;
|
|
184
|
+
white-space: nowrap;
|
|
185
|
+
text-align: left;
|
|
186
|
+
cursor: pointer;
|
|
187
|
+
font-size: 14px;
|
|
188
|
+
flex: 0.5 0;
|
|
189
|
+
}
|
|
190
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-list-cell-cursor-default,
|
|
191
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-list-cell-cursor-default {
|
|
192
|
+
cursor: default !important;
|
|
193
|
+
}
|
|
194
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-list-cell-icon,
|
|
195
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-list-cell-icon {
|
|
196
|
+
max-width: 24px;
|
|
197
|
+
min-width: 20px;
|
|
198
|
+
}
|
|
199
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-list-firstColumn,
|
|
200
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-list-firstColumn {
|
|
201
|
+
display: flex;
|
|
202
|
+
align-items: center;
|
|
203
|
+
flex: 1 0;
|
|
204
|
+
}
|
|
205
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-list-firstColumn input, .filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-list-firstColumn label,
|
|
206
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-list-firstColumn input,
|
|
207
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-list-firstColumn label {
|
|
208
|
+
width: 80%;
|
|
209
|
+
}
|
|
210
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-list-firstColumn label,
|
|
211
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-list-firstColumn label {
|
|
212
|
+
text-overflow: ellipsis;
|
|
213
|
+
white-space: nowrap;
|
|
214
|
+
overflow: hidden;
|
|
215
|
+
}
|
|
216
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-ProviderBrowser-list,
|
|
217
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-ProviderBrowser-list {
|
|
218
|
+
outline: none;
|
|
219
|
+
}
|
|
220
|
+
.filerobot-ProviderBrowser-layoutType--list li.filerobot-ProviderBrowserItem,
|
|
221
|
+
.filerobot-ProviderBrowser-layoutType--tiles li.filerobot-ProviderBrowserItem {
|
|
222
|
+
outline: none;
|
|
223
|
+
display: flex;
|
|
224
|
+
align-items: center;
|
|
225
|
+
padding: 11px 12px;
|
|
226
|
+
margin: 0;
|
|
227
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
|
|
228
|
+
}
|
|
229
|
+
[data-filerobot-theme=dark] .filerobot-ProviderBrowser-layoutType--list li.filerobot-ProviderBrowserItem,
|
|
230
|
+
[data-filerobot-theme=dark] .filerobot-ProviderBrowser-layoutType--tiles li.filerobot-ProviderBrowserItem {
|
|
231
|
+
color: #eaeaea;
|
|
232
|
+
}
|
|
233
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-ProviderBrowser-body,
|
|
234
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-ProviderBrowser-body {
|
|
235
|
+
width: 100%;
|
|
236
|
+
overflow-x: auto;
|
|
237
|
+
}
|
|
238
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-ItemCategory-header,
|
|
239
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-ItemCategory-header {
|
|
240
|
+
text-overflow: ellipsis;
|
|
241
|
+
white-space: nowrap;
|
|
242
|
+
overflow: hidden;
|
|
243
|
+
display: flex;
|
|
244
|
+
align-items: center;
|
|
245
|
+
text-align: left;
|
|
246
|
+
padding: 12px;
|
|
247
|
+
font-weight: 400;
|
|
248
|
+
font-size: 14px;
|
|
249
|
+
line-height: 16px;
|
|
250
|
+
border-bottom: 1.5px solid rgba(0, 0, 0, 0.07);
|
|
251
|
+
position: sticky;
|
|
252
|
+
top: -1px;
|
|
253
|
+
background-color: #fff;
|
|
254
|
+
z-index: 11;
|
|
255
|
+
}
|
|
256
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-ItemCategory-header:last-child,
|
|
257
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-ItemCategory-header:last-child {
|
|
258
|
+
margin-right: 0;
|
|
259
|
+
}
|
|
260
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-ItemCategory-header .filerobot-c-icon,
|
|
261
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-ItemCategory-header .filerobot-c-icon {
|
|
262
|
+
vertical-align: middle;
|
|
263
|
+
}
|
|
264
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-ItemCategory-wrapper-list,
|
|
265
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-ItemCategory-wrapper-list {
|
|
266
|
+
padding: 0;
|
|
267
|
+
}
|
|
268
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-ProviderBrowserItem-fakeCheckbox,
|
|
269
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-ProviderBrowserItem-fakeCheckbox {
|
|
270
|
+
margin-right: 8px;
|
|
271
|
+
vertical-align: middle;
|
|
272
|
+
}
|
|
273
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-ProviderBrowserItem-inner,
|
|
274
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-ProviderBrowserItem-inner {
|
|
275
|
+
text-overflow: ellipsis;
|
|
276
|
+
white-space: nowrap;
|
|
277
|
+
overflow: hidden;
|
|
278
|
+
display: flex;
|
|
279
|
+
align-items: center;
|
|
280
|
+
width: 100%;
|
|
281
|
+
line-height: 1.3;
|
|
282
|
+
outline: none;
|
|
283
|
+
}
|
|
284
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-ProviderBrowserItem-inner input,
|
|
285
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-ProviderBrowserItem-inner input {
|
|
286
|
+
height: 17px;
|
|
287
|
+
}
|
|
288
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-ProviderBrowserItem-inner img, .filerobot-ProviderBrowser-layoutType--list .filerobot-ProviderBrowserItem-inner svg,
|
|
289
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-ProviderBrowserItem-inner img,
|
|
290
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-ProviderBrowserItem-inner svg {
|
|
291
|
+
max-width: 20px;
|
|
292
|
+
max-height: 20px;
|
|
293
|
+
}
|
|
294
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-ProviderBrowserItem,
|
|
295
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-ProviderBrowserItem {
|
|
296
|
+
color: #4D4E4E;
|
|
297
|
+
}
|
|
298
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-ProviderBrowserItem--selected,
|
|
299
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-ProviderBrowserItem--selected {
|
|
300
|
+
background: #5D6D7E;
|
|
301
|
+
color: #fff;
|
|
302
|
+
border-bottom: 1px solid #DFE7ED !important;
|
|
303
|
+
}
|
|
304
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-ProviderBrowserItem--selected svg path,
|
|
305
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-ProviderBrowserItem--selected svg path {
|
|
306
|
+
fill: #DFE7ED;
|
|
307
|
+
}
|
|
308
|
+
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-listHead-checkbox,
|
|
309
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-listHead-checkbox {
|
|
310
|
+
min-width: 16px;
|
|
311
|
+
}
|
|
268
312
|
|
|
269
313
|
.filerobot-ProviderBrowser-layoutType--list .filerobot-common-Checkbox {
|
|
270
|
-
margin-right: 8px;
|
|
271
|
-
|
|
314
|
+
margin-right: 8px;
|
|
315
|
+
}
|
|
272
316
|
.filerobot-ProviderBrowser-layoutType--list .filerobot-Provider-ItemCategory-header .filerobot-Provider-list-cell-icon {
|
|
273
317
|
display: flex;
|
|
274
|
-
padding-left: 2px;
|
|
318
|
+
padding-left: 2px;
|
|
319
|
+
}
|
|
275
320
|
|
|
276
321
|
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-ItemCategory-header {
|
|
277
|
-
padding: 11px 12px;
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
322
|
+
padding: 11px 12px;
|
|
323
|
+
}
|
|
324
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-ItemCategory-header .filerobot-Provider-list-cell-icon {
|
|
325
|
+
display: flex;
|
|
326
|
+
padding-left: 4px;
|
|
327
|
+
margin-left: 4px;
|
|
328
|
+
}
|
|
283
329
|
.filerobot-ProviderBrowser-layoutType--tiles li.filerobot-ProviderBrowserItem {
|
|
284
|
-
padding: 11px 12px;
|
|
285
|
-
|
|
330
|
+
padding: 11px 12px;
|
|
331
|
+
}
|
|
286
332
|
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-list-cell-icon {
|
|
287
333
|
max-width: 36px;
|
|
288
334
|
min-width: 36px;
|
|
289
|
-
margin-right: 8px;
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
335
|
+
margin-right: 8px;
|
|
336
|
+
}
|
|
337
|
+
.filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-list-cell-icon svg:not(.context-menu-icon), .filerobot-ProviderBrowser-layoutType--tiles .filerobot-Provider-list-cell-icon img {
|
|
338
|
+
width: 36px;
|
|
339
|
+
max-width: 36px;
|
|
340
|
+
max-height: 36px;
|
|
341
|
+
}
|
|
294
342
|
|
|
295
343
|
.filerobot-Explorer-Details-header {
|
|
296
344
|
display: flex;
|
|
297
345
|
align-items: center;
|
|
298
346
|
margin-left: 30px;
|
|
299
|
-
font-size: 12px;
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
347
|
+
font-size: 12px;
|
|
348
|
+
}
|
|
349
|
+
.filerobot-Explorer-Details-header-icon {
|
|
350
|
+
margin-left: 6px;
|
|
351
|
+
}
|
|
352
|
+
.filerobot-Explorer-Details-header-title {
|
|
353
|
+
margin-top: 12px;
|
|
354
|
+
display: flex;
|
|
355
|
+
align-items: center;
|
|
356
|
+
max-width: 90%;
|
|
357
|
+
}
|
|
358
|
+
.filerobot-Explorer-Details-header-title label {
|
|
359
|
+
text-overflow: ellipsis;
|
|
360
|
+
white-space: nowrap;
|
|
361
|
+
overflow: hidden;
|
|
362
|
+
}
|
|
312
363
|
.filerobot-Explorer-Details-tabs {
|
|
313
364
|
display: flex;
|
|
314
365
|
padding: 0 8px;
|
|
315
366
|
margin-top: 8px;
|
|
316
367
|
font-size: 12px;
|
|
317
|
-
cursor: pointer;
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
368
|
+
cursor: pointer;
|
|
369
|
+
}
|
|
370
|
+
.filerobot-Explorer-Details-tabs-details, .filerobot-Explorer-Details-tabs-comments {
|
|
371
|
+
display: flex;
|
|
372
|
+
justify-content: center;
|
|
373
|
+
align-items: center;
|
|
374
|
+
width: 50%;
|
|
375
|
+
height: 30px;
|
|
376
|
+
color: #4D4E4E;
|
|
377
|
+
border: 1px solid transparent;
|
|
378
|
+
border-top-left-radius: 0.1rem;
|
|
379
|
+
border-top-right-radius: 0.1rem;
|
|
380
|
+
}
|
|
381
|
+
.filerobot-Explorer-Details-tabs-details label, .filerobot-Explorer-Details-tabs-comments label {
|
|
382
|
+
width: 100%;
|
|
383
|
+
height: 100%;
|
|
384
|
+
display: flex;
|
|
385
|
+
align-items: center;
|
|
386
|
+
justify-content: center;
|
|
387
|
+
cursor: pointer;
|
|
388
|
+
}
|
|
389
|
+
.filerobot-Explorer-Details-tabs-details label:hover, .filerobot-Explorer-Details-tabs-comments label:hover {
|
|
390
|
+
margin-bottom: -1px;
|
|
391
|
+
border-bottom: 2px solid #6879EB;
|
|
392
|
+
background-color: #F8FAFB;
|
|
393
|
+
color: #6879EB;
|
|
394
|
+
}
|
|
395
|
+
.filerobot-Explorer-Details-tabs-details > input[type=radio], .filerobot-Explorer-Details-tabs-comments > input[type=radio] {
|
|
396
|
+
position: absolute;
|
|
397
|
+
left: -200vw;
|
|
398
|
+
}
|
|
399
|
+
.filerobot-Explorer-Details-tabs-details > input:checked + label, .filerobot-Explorer-Details-tabs-comments > input:checked + label {
|
|
400
|
+
margin-bottom: -1px;
|
|
401
|
+
border-bottom: 2px solid #6879EB;
|
|
402
|
+
background-color: #F8FAFB;
|
|
403
|
+
color: #6879EB;
|
|
404
|
+
}
|
|
349
405
|
.filerobot-Explorer-Details-icon-preview {
|
|
350
406
|
display: flex;
|
|
351
407
|
justify-content: center;
|
|
352
408
|
margin-top: 8px;
|
|
353
|
-
margin-bottom: 21px;
|
|
354
|
-
|
|
409
|
+
margin-bottom: 21px;
|
|
410
|
+
}
|
|
355
411
|
.filerobot-Explorer-Details-file-preview {
|
|
356
412
|
margin: 8px 5px 12px 8px;
|
|
357
413
|
height: 146px;
|
|
358
|
-
position: relative;
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
414
|
+
position: relative;
|
|
415
|
+
}
|
|
416
|
+
.filerobot-Explorer-Details-file-preview:hover .filerobot-Explorer-Details-thumbnailZoomOverlay {
|
|
417
|
+
display: flex;
|
|
418
|
+
}
|
|
362
419
|
.filerobot-Explorer-Details-thumbnail {
|
|
363
420
|
position: relative;
|
|
364
421
|
z-index: 1;
|
|
@@ -367,67 +424,76 @@
|
|
|
367
424
|
max-width: 100%;
|
|
368
425
|
max-height: 100%;
|
|
369
426
|
-o-object-fit: contain;
|
|
370
|
-
object-fit: contain;
|
|
371
|
-
|
|
427
|
+
object-fit: contain;
|
|
428
|
+
}
|
|
372
429
|
.filerobot-Explorer-Details-info {
|
|
373
430
|
font-size: 12px;
|
|
374
431
|
margin: 0;
|
|
375
432
|
padding: 0;
|
|
376
433
|
margin-top: 12px;
|
|
377
|
-
padding-left: 12px;
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
434
|
+
padding-left: 12px;
|
|
435
|
+
}
|
|
436
|
+
.filerobot-Explorer-Details-info-list {
|
|
437
|
+
display: flex;
|
|
438
|
+
list-style: none;
|
|
439
|
+
margin-bottom: 8px;
|
|
440
|
+
}
|
|
441
|
+
.filerobot-Explorer-Details-info-list-name {
|
|
442
|
+
display: flex;
|
|
443
|
+
font-weight: 400;
|
|
444
|
+
width: 68px;
|
|
445
|
+
padding-right: 2px;
|
|
446
|
+
color: #768184;
|
|
447
|
+
}
|
|
448
|
+
.filerobot-Explorer-Details-info-list-name > span {
|
|
449
|
+
text-overflow: ellipsis;
|
|
450
|
+
white-space: nowrap;
|
|
451
|
+
overflow: hidden;
|
|
452
|
+
}
|
|
453
|
+
.filerobot-Explorer-Details-info-list-value {
|
|
454
|
+
display: inline-block;
|
|
455
|
+
color: #4D4E4E;
|
|
456
|
+
font-weight: 400;
|
|
457
|
+
width: calc(100% - 68px);
|
|
458
|
+
}
|
|
398
459
|
.filerobot-Explorer-Details-section {
|
|
399
460
|
margin-top: 8px;
|
|
400
461
|
padding-top: 12px;
|
|
401
462
|
margin-right: 12px;
|
|
402
463
|
margin-left: 12px;
|
|
403
464
|
font-size: 12px;
|
|
404
|
-
border-top: 1px solid #DFE7ED;
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
465
|
+
border-top: 1px solid #DFE7ED;
|
|
466
|
+
}
|
|
467
|
+
.filerobot-Explorer-Details-section-header {
|
|
468
|
+
display: flex;
|
|
469
|
+
justify-content: space-between;
|
|
470
|
+
align-items: center;
|
|
471
|
+
margin-bottom: 9px;
|
|
472
|
+
padding-right: 5px;
|
|
473
|
+
}
|
|
474
|
+
.filerobot-Explorer-Details-section-header-title {
|
|
475
|
+
color: #768184;
|
|
476
|
+
}
|
|
477
|
+
.filerobot-Explorer-Details-section-content-list {
|
|
478
|
+
display: inline-flex;
|
|
479
|
+
flex-wrap: wrap;
|
|
480
|
+
margin: 0;
|
|
481
|
+
padding: 0;
|
|
482
|
+
width: 100%;
|
|
483
|
+
list-style: none;
|
|
484
|
+
}
|
|
485
|
+
.filerobot-Explorer-Details-section-content-list li {
|
|
486
|
+
position: relative;
|
|
487
|
+
display: flex;
|
|
488
|
+
align-items: center;
|
|
489
|
+
margin: 0 5px 5px 0;
|
|
490
|
+
padding: 4px 6px;
|
|
491
|
+
border-radius: 2px;
|
|
492
|
+
color: #4D4E4E;
|
|
493
|
+
background: #F8FAFB;
|
|
494
|
+
font-family: "Roboto";
|
|
495
|
+
font-weight: 400;
|
|
496
|
+
}
|
|
431
497
|
|
|
432
498
|
.filerobot-Explorer-Details-thumbnailZoomOverlay {
|
|
433
499
|
position: absolute;
|
|
@@ -440,15 +506,19 @@
|
|
|
440
506
|
-webkit-user-select: none;
|
|
441
507
|
-moz-user-select: none;
|
|
442
508
|
user-select: none;
|
|
443
|
-
z-index: 111;
|
|
509
|
+
z-index: 111;
|
|
510
|
+
}
|
|
444
511
|
|
|
445
512
|
.filerobot-Explorer-Details-thumbnailZoomOverlayButton {
|
|
446
513
|
width: 100%;
|
|
447
|
-
height: 100%;
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
514
|
+
height: 100%;
|
|
515
|
+
}
|
|
516
|
+
.filerobot-Explorer-Details-thumbnailZoomOverlayButton:hover {
|
|
517
|
+
background: transparent !important;
|
|
518
|
+
}
|
|
519
|
+
.filerobot-Explorer-Details-thumbnailZoomOverlayButton:active:before {
|
|
520
|
+
opacity: 0.5 !important;
|
|
521
|
+
}
|
|
452
522
|
|
|
453
523
|
.filerobot-ProviderBrowser {
|
|
454
524
|
display: flex;
|
|
@@ -458,40 +528,48 @@
|
|
|
458
528
|
font-weight: 400;
|
|
459
529
|
height: 100%;
|
|
460
530
|
position: relative;
|
|
461
|
-
background-color: #fff;
|
|
531
|
+
background-color: #fff;
|
|
532
|
+
}
|
|
462
533
|
|
|
463
534
|
.filerobot-ProviderBrowser-user {
|
|
464
535
|
margin: 0 8px 0 0;
|
|
465
536
|
font-weight: 500;
|
|
466
|
-
color: #333;
|
|
467
|
-
|
|
468
|
-
|
|
537
|
+
color: #333;
|
|
538
|
+
}
|
|
539
|
+
[data-filerobot-theme=dark] .filerobot-ProviderBrowser-user {
|
|
540
|
+
color: #eaeaea;
|
|
541
|
+
}
|
|
469
542
|
|
|
470
543
|
.filerobot-ProviderBrowser-select {
|
|
471
544
|
cursor: pointer;
|
|
472
545
|
line-height: 1.5;
|
|
473
|
-
color: #000;
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
546
|
+
color: #000;
|
|
547
|
+
}
|
|
548
|
+
.filerobot-ProviderBrowser-select.--filter {
|
|
549
|
+
max-width: 120px;
|
|
550
|
+
white-space: nowrap;
|
|
551
|
+
text-overflow: ellipsis;
|
|
552
|
+
overflow: hidden;
|
|
553
|
+
padding-right: 2px;
|
|
554
|
+
}
|
|
555
|
+
.filerobot-ProviderBrowser-select:focus {
|
|
556
|
+
outline: none;
|
|
557
|
+
border-color: transparent;
|
|
558
|
+
}
|
|
483
559
|
|
|
484
560
|
.filerobot-ProviderBrowser-user:after {
|
|
485
|
-
content:
|
|
561
|
+
content: "·";
|
|
486
562
|
position: relative;
|
|
487
563
|
left: 4px;
|
|
488
564
|
color: #939393;
|
|
489
|
-
font-weight: normal;
|
|
565
|
+
font-weight: normal;
|
|
566
|
+
}
|
|
490
567
|
|
|
491
568
|
.filerobot-ProviderBrowser-headerBar--simple {
|
|
492
569
|
text-align: center;
|
|
493
570
|
display: block;
|
|
494
|
-
justify-content: center;
|
|
571
|
+
justify-content: center;
|
|
572
|
+
}
|
|
495
573
|
|
|
496
574
|
.filerobot-ProviderBrowser-headerBar {
|
|
497
575
|
display: flex;
|
|
@@ -501,108 +579,132 @@
|
|
|
501
579
|
line-height: 1.4;
|
|
502
580
|
font-size: 12px;
|
|
503
581
|
position: relative;
|
|
504
|
-
width: 100%;
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
582
|
+
width: 100%;
|
|
583
|
+
}
|
|
584
|
+
.filerobot-size--md .filerobot-ProviderBrowser-headerBar {
|
|
585
|
+
display: flex;
|
|
586
|
+
align-items: center;
|
|
587
|
+
justify-content: space-between;
|
|
588
|
+
}
|
|
589
|
+
.filerobot-size--height-md .filerobot-ProviderBrowser-headerBar {
|
|
590
|
+
display: flex;
|
|
591
|
+
align-items: center;
|
|
592
|
+
}
|
|
593
|
+
[data-filerobot-theme=dark] .filerobot-ProviderBrowser-headerBar {
|
|
594
|
+
border-bottom: 1px solid #333;
|
|
595
|
+
background-color: #1f1f1f;
|
|
596
|
+
}
|
|
515
597
|
|
|
516
598
|
.filerobot-ProviderBrowser-headerBar--simple {
|
|
517
599
|
text-align: center;
|
|
518
600
|
display: block;
|
|
519
|
-
justify-content: center;
|
|
601
|
+
justify-content: center;
|
|
602
|
+
}
|
|
520
603
|
|
|
521
604
|
.filerobot-ProviderBrowser-body {
|
|
522
605
|
flex: 1;
|
|
523
606
|
z-index: 1000;
|
|
524
607
|
position: relative;
|
|
525
608
|
display: flex;
|
|
526
|
-
height: 100%;
|
|
609
|
+
height: 100%;
|
|
610
|
+
}
|
|
527
611
|
|
|
528
612
|
.filerobot-ProviderBrowser-body-list {
|
|
529
613
|
width: 100%;
|
|
530
|
-
overflow-x: auto;
|
|
614
|
+
overflow-x: auto;
|
|
615
|
+
}
|
|
531
616
|
|
|
532
617
|
.item-folder.filerobot-ProviderBrowserItem {
|
|
533
618
|
padding: 4px;
|
|
534
619
|
border-radius: 7px;
|
|
535
|
-
outline: none;
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
620
|
+
outline: none;
|
|
621
|
+
}
|
|
622
|
+
.item-folder.filerobot-ProviderBrowserItem::before {
|
|
623
|
+
content: unset !important;
|
|
624
|
+
display: none !important;
|
|
625
|
+
padding-top: 0 !important;
|
|
626
|
+
}
|
|
627
|
+
.item-folder.filerobot-ProviderBrowserItem .filerobot-ProviderBrowserItem-inner-folder {
|
|
628
|
+
display: flex;
|
|
629
|
+
align-items: center;
|
|
630
|
+
padding: 10px 12px;
|
|
631
|
+
border: 1px solid #DFE7ED;
|
|
632
|
+
border-radius: 2px;
|
|
633
|
+
box-sizing: border-box;
|
|
634
|
+
width: 100%;
|
|
635
|
+
height: 36px;
|
|
636
|
+
outline: none;
|
|
637
|
+
}
|
|
638
|
+
.item-folder.filerobot-ProviderBrowserItem .filerobot-ProviderBrowserItem-inner-folder .filerobot-ProviderBrowserItem-folderLiIcon > * {
|
|
639
|
+
width: 20px;
|
|
640
|
+
height: 20px;
|
|
641
|
+
}
|
|
642
|
+
.item-folder.filerobot-ProviderBrowserItem .filerobot-ProviderBrowserItem-inner-folder input {
|
|
643
|
+
width: 96%;
|
|
644
|
+
}
|
|
645
|
+
.item-folder.filerobot-ProviderBrowserItem .filerobot-ProviderBrowserItem-inner-folder .filerobot-Explorer-dots-menu-icon {
|
|
646
|
+
display: none;
|
|
647
|
+
}
|
|
648
|
+
.item-folder.filerobot-ProviderBrowserItem .filerobot-ProviderBrowserItem-inner-folder-title {
|
|
649
|
+
flex-grow: 1;
|
|
650
|
+
font-weight: 500;
|
|
651
|
+
white-space: nowrap;
|
|
652
|
+
text-overflow: ellipsis;
|
|
653
|
+
overflow: hidden;
|
|
654
|
+
font-size: 14px;
|
|
655
|
+
line-height: 16px;
|
|
656
|
+
color: #4D4E4E;
|
|
657
|
+
margin-left: 8px;
|
|
658
|
+
}
|
|
659
|
+
.item-folder.filerobot-ProviderBrowserItem button.filerobot-ProviderBrowserItem-inner-folder:hover {
|
|
660
|
+
background-color: #EFF3F6;
|
|
661
|
+
}
|
|
662
|
+
.item-folder.filerobot-ProviderBrowserItem--selected button.filerobot-ProviderBrowserItem-inner-folder {
|
|
663
|
+
background-color: #5D6D7E !important;
|
|
664
|
+
outline: none;
|
|
665
|
+
}
|
|
666
|
+
.item-folder.filerobot-ProviderBrowserItem--selected button.filerobot-ProviderBrowserItem-inner-folder input {
|
|
667
|
+
color: #000;
|
|
668
|
+
width: 96%;
|
|
669
|
+
}
|
|
670
|
+
.item-folder.filerobot-ProviderBrowserItem--selected button.filerobot-ProviderBrowserItem-inner-folder * {
|
|
671
|
+
fill: #DFE7ED;
|
|
672
|
+
color: #fff;
|
|
673
|
+
}
|
|
578
674
|
|
|
579
675
|
.filerobot-ProviderBrowserItem-inner {
|
|
580
676
|
cursor: pointer;
|
|
581
677
|
font-weight: 400;
|
|
582
678
|
font-size: 14px;
|
|
583
|
-
line-height: 16px;
|
|
679
|
+
line-height: 16px;
|
|
680
|
+
}
|
|
584
681
|
|
|
585
682
|
.filerobot-Provider-list-cell-header-title {
|
|
586
683
|
white-space: nowrap;
|
|
587
684
|
overflow: hidden;
|
|
588
|
-
text-overflow: ellipsis;
|
|
685
|
+
text-overflow: ellipsis;
|
|
686
|
+
}
|
|
589
687
|
|
|
590
688
|
.filerobot-Provider-list-cell-header-hidableIcon {
|
|
591
|
-
visibility: hidden;
|
|
689
|
+
visibility: hidden;
|
|
690
|
+
}
|
|
592
691
|
|
|
593
692
|
.filerobot-Provider-list-cell-wrapper {
|
|
594
693
|
font-size: 12px;
|
|
595
694
|
display: flex;
|
|
596
|
-
align-items: center;
|
|
597
|
-
|
|
598
|
-
|
|
695
|
+
align-items: center;
|
|
696
|
+
}
|
|
697
|
+
.filerobot-Provider-list-cell-wrapper:hover .filerobot-Provider-list-cell-header-hidableIcon {
|
|
698
|
+
visibility: visible;
|
|
699
|
+
}
|
|
599
700
|
|
|
600
701
|
.filerobot-ProviderBrowser-mainContent {
|
|
601
702
|
flex-grow: 1;
|
|
602
703
|
overflow: hidden;
|
|
603
704
|
overflow-x: auto;
|
|
604
705
|
-webkit-overflow-scrolling: touch;
|
|
605
|
-
position: relative;
|
|
706
|
+
position: relative;
|
|
707
|
+
}
|
|
606
708
|
|
|
607
709
|
.filerobot-ProviderBrowserItem--draggable-block {
|
|
608
710
|
position: sticky;
|
|
@@ -611,19 +713,23 @@
|
|
|
611
713
|
height: 100%;
|
|
612
714
|
cursor: col-resize;
|
|
613
715
|
z-index: 100;
|
|
614
|
-
background: #DFE7ED;
|
|
716
|
+
background: #DFE7ED;
|
|
717
|
+
}
|
|
615
718
|
|
|
616
719
|
.filerobot-ProviderBrowserItem-SideNav-addNew {
|
|
617
720
|
color: #5D6D7E;
|
|
618
721
|
font-weight: 500;
|
|
619
|
-
cursor: pointer;
|
|
722
|
+
cursor: pointer;
|
|
723
|
+
}
|
|
620
724
|
|
|
621
725
|
.filerobot-ProviderBrowser-body-sideButtons {
|
|
622
726
|
min-width: 40px;
|
|
623
|
-
max-width: 40px;
|
|
727
|
+
max-width: 40px;
|
|
728
|
+
}
|
|
624
729
|
|
|
625
730
|
.filerobot-ProviderBrowser-body-leftSideButtons {
|
|
626
|
-
margin-right: 20px;
|
|
731
|
+
margin-right: 20px;
|
|
732
|
+
}
|
|
627
733
|
|
|
628
734
|
.filerobot-ProviderBrowser-body-leftNavigationButton {
|
|
629
735
|
background: #F8FAFB;
|
|
@@ -633,10 +739,12 @@
|
|
|
633
739
|
margin-top: 10px;
|
|
634
740
|
width: 100%;
|
|
635
741
|
position: sticky;
|
|
636
|
-
top: 91px;
|
|
742
|
+
top: 91px;
|
|
743
|
+
}
|
|
637
744
|
|
|
638
745
|
.filerobot-ProviderBrowser-body-rightSideButtons {
|
|
639
|
-
margin-left: 20px;
|
|
746
|
+
margin-left: 20px;
|
|
747
|
+
}
|
|
640
748
|
|
|
641
749
|
.filerobot-ProviderBrowser-body-rightNavigationButton {
|
|
642
750
|
background: #F8FAFB;
|
|
@@ -646,26 +754,34 @@
|
|
|
646
754
|
margin-top: 10px;
|
|
647
755
|
width: 100%;
|
|
648
756
|
position: sticky;
|
|
649
|
-
top: 91px;
|
|
757
|
+
top: 91px;
|
|
758
|
+
}
|
|
650
759
|
|
|
651
760
|
.filerobot-Provider-LabelsListLi-selectMode,
|
|
652
761
|
.filerobot-Provider-LabelsListLi-selectMode * {
|
|
653
|
-
cursor: pointer;
|
|
762
|
+
cursor: pointer;
|
|
763
|
+
}
|
|
654
764
|
|
|
655
765
|
.filerobot-ProviderBrowserItem-ItemHoverBottomOptions {
|
|
656
766
|
bottom: 4%;
|
|
657
767
|
right: 3%;
|
|
658
|
-
top: auto;
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
768
|
+
top: auto;
|
|
769
|
+
}
|
|
770
|
+
.filerobot-ProviderBrowserItem-ItemHoverBottomOptions-selected {
|
|
771
|
+
display: flex;
|
|
772
|
+
visibility: visible;
|
|
773
|
+
}
|
|
774
|
+
.filerobot-ProviderBrowserItem-ItemHoverBottomOptions-selected button {
|
|
775
|
+
background: #fff;
|
|
776
|
+
}
|
|
777
|
+
.filerobot-ProviderBrowserItem-ItemHoverBottomOptions-selected button:not(:active) svg * {
|
|
778
|
+
color: #6879EB;
|
|
779
|
+
fill: #6879EB;
|
|
780
|
+
}
|
|
781
|
+
.filerobot-ProviderBrowserItem-ItemHoverBottomOptions-selected button:not(:active):hover {
|
|
782
|
+
background: #EFF3F6;
|
|
783
|
+
}
|
|
784
|
+
.filerobot-ProviderBrowserItem-ItemHoverBottomOptions-selected button:not(:active):hover svg * {
|
|
785
|
+
fill: #606FD1;
|
|
786
|
+
color: #606FD1;
|
|
787
|
+
}
|