mirror of
https://github.com/nextcloud/server.git
synced 2026-06-13 10:40:40 -04:00
Merge pull request #44162 from nextcloud/fix/breadcrumb-narrow-width-being-hidden
This commit is contained in:
commit
c16d42f38e
3 changed files with 6 additions and 5 deletions
|
|
@ -126,9 +126,9 @@ export default defineComponent({
|
|||
return this.uploaderStore.queue.length !== 0
|
||||
},
|
||||
|
||||
// Hide breadcrumbs if an upload is ongoing on arrow screens
|
||||
// Hide breadcrumbs if an upload is ongoing
|
||||
shouldShowBreadcrumbs(): boolean {
|
||||
return this.filesListWidth > 768 && !this.isUploadInProgress
|
||||
return this.filesListWidth > 400 && !this.isUploadInProgress
|
||||
},
|
||||
|
||||
// used to show the views icon for the first breadcrumb
|
||||
|
|
@ -186,6 +186,7 @@ export default defineComponent({
|
|||
// Take as much space as possible
|
||||
flex: 1 1 100% !important;
|
||||
width: 100%;
|
||||
margin-inline: 0px 10px 0px 10px;
|
||||
|
||||
::v-deep a {
|
||||
cursor: pointer !important;
|
||||
|
|
|
|||
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