forked from owncloud/web
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Right sidebar to views (owncloud#7501)
- Loading branch information
1 parent
b9381ff
commit f727344
Showing
39 changed files
with
1,024 additions
and
1,533 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
packages/web-app-files/src/components/FilesViewWrapper.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<template> | ||
<div class="files-view-wrapper oc-width-expand"> | ||
<div id="files-view" v-bind="$attrs"> | ||
<slot /> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script lang="ts"> | ||
import { defineComponent } from '@vue/composition-api' | ||
export default defineComponent({ | ||
inheritAttrs: false | ||
}) | ||
</script> | ||
|
||
<style lang="scss" scoped> | ||
.files-view-wrapper { | ||
position: relative; | ||
overflow-y: auto; | ||
display: grid; | ||
grid-template-columns: 1fr; | ||
grid-template-rows: max-content max-content 1fr; | ||
gap: 0 0; | ||
grid-template-areas: | ||
'header' | ||
'upload' | ||
'main'; | ||
&:focus { | ||
outline: none; | ||
} | ||
} | ||
#files-view { | ||
grid-area: main; | ||
z-index: 0; | ||
outline: none; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.