diff --git a/Moonlight/Shared/Components/FileManagerPartials/FileView.razor b/Moonlight/Shared/Components/FileManagerPartials/FileView.razor index dcf0a346cf5f2ee19cb934619539fca91fa72eab..0e889e8af87d789811150c1a1b903e2dd5b71178 100644 --- a/Moonlight/Shared/Components/FileManagerPartials/FileView.razor +++ b/Moonlight/Shared/Components/FileManagerPartials/FileView.razor @@ -35,88 +35,90 @@
- | -
-
-
-
-
-
-
- |
- - |
-
-
-
-
-
- |
- |
- @if (!HideSelect)
- {
-
- @{
- var toggle = ToggleStatusCache.ContainsKey(file) && ToggleStatusCache[file];
- }
-
- @if (toggle)
- {
- SetToggleState(file, false)" class="form-check-input" type="checkbox" checked="checked">
- }
- else
- {
- SetToggleState(file, true)" class="form-check-input" type="checkbox">
- }
-
- }
|
- @if (file.IsFile)
- {
-
- }
- else
- {
-
- }
+
- OnClicked(file)" class="ms-3 text-gray-800 text-hover-primary">@(file.Name)
+
+
|
- @(Formatter.FormatSize(file.Size)) | +
-
- @if (ContextActions.Any())
- {
-
+
|
|
+ @if (!HideSelect)
+ {
+
+ @{
+ var toggle = ToggleStatusCache.ContainsKey(file) && ToggleStatusCache[file];
+ }
+
+ @if (toggle)
+ {
+ SetToggleState(file, false)" class="form-check-input" type="checkbox" checked="checked">
+ }
+ else
+ {
+ SetToggleState(file, true)" class="form-check-input" type="checkbox">
+ }
+
+ }
+ |
+
+
+
+ @if (file.IsFile)
+ {
+
+ }
+ else
+ {
+
+ }
+
+ OnClicked(file)" class="ms-3 text-gray-800 text-hover-primary">@(file.Name)
+
+ |
+ @(Formatter.FormatSize(file.Size)) | +
+
+
+
+ @if (ContextActions.Any())
+ {
+
+ |
+