mirror of
https://github.com/nextcloud/server.git
synced 2026-06-13 18:50:47 -04:00
Merge pull request #47370 from nextcloud/fix/loading-icon
fix(files): Move loading icon before grid toggle
This commit is contained in:
commit
974cda636f
3 changed files with 9 additions and 9 deletions
|
|
@ -48,6 +48,9 @@
|
|||
</template>
|
||||
</BreadCrumbs>
|
||||
|
||||
<!-- Secondary loading indicator -->
|
||||
<NcLoadingIcon v-if="isRefreshing" class="files-list__refresh-icon" />
|
||||
|
||||
<NcButton v-if="filesListWidth >= 512 && enableGridView"
|
||||
:aria-label="gridViewButtonLabel"
|
||||
:title="gridViewButtonLabel"
|
||||
|
|
@ -59,9 +62,6 @@
|
|||
<ViewGridIcon v-else />
|
||||
</template>
|
||||
</NcButton>
|
||||
|
||||
<!-- Secondary loading indicator -->
|
||||
<NcLoadingIcon v-if="isRefreshing" class="files-list__refresh-icon" />
|
||||
</div>
|
||||
|
||||
<!-- Drag and drop notice -->
|
||||
|
|
@ -703,9 +703,9 @@ export default defineComponent({
|
|||
}
|
||||
|
||||
&__refresh-icon {
|
||||
flex: 0 0 44px;
|
||||
width: 44px;
|
||||
height: 44px;
|
||||
flex: 0 0 var(--default-clickable-area);
|
||||
width: var(--default-clickable-area);
|
||||
height: var(--default-clickable-area);
|
||||
}
|
||||
|
||||
&__loading-icon {
|
||||
|
|
|
|||
4
dist/files-main.js
vendored
4
dist/files-main.js
vendored
File diff suppressed because one or more lines are too long
2
dist/files-main.js.map
vendored
2
dist/files-main.js.map
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue