Merge pull request #30454 from nextcloud/backport/30420/stable21

[stable21] improve status modal
pull/30559/head
Simon L 2022-01-08 11:41:49 +07:00 committed by GitHub
commit 62a9fd5b99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 26 additions and 8 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -237,11 +237,28 @@ export default {
</script>
<style lang="scss" scoped>
// TODO: can be removed once migrated to @nextcloud-vue >= 5.0
::v-deep {
.modal-wrapper {
.prev, .next {
display: none !important;
}
.modal-container {
max-height: 100% !important;
}
}
.modal-header .modal-title {
display: none;
}
}
.set-status-modal {
min-height: 200px;
padding: 8px 20px 20px 20px;
// Enable scrollbar for too long content, same way as in Dashboard customize
max-height: 70vh;
max-height: 95vh;
overflow: auto;
&__header {

@ -134,6 +134,7 @@
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": ">=10.0.0"
"node": "^12.0.0",
"npm": "^6.0.0"
}
}