Merge pull request #30453 from nextcloud/backport/30420/stable22

[stable22] improve status modal
This commit is contained in:
MichaIng 2021-12-31 17:45:19 +01:00 committed by GitHub
commit 91ed7e4f95
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 24 additions and 7 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

View file

@ -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 {