summaryrefslogtreecommitdiffstats
path: root/apps/user_status/src
diff options
context:
space:
mode:
authorszaimen <szaimen@e.mail.de>2021-12-28 12:38:22 +0100
committernextcloud-command <nextcloud-command@users.noreply.github.com>2021-12-30 12:25:54 +0000
commit3c9b6f68096f763ba0605ce6eda5ee43765f4515 (patch)
tree649285b77ac2b81348c62cc59f3919e2d8f395a4 /apps/user_status/src
parent66ca9baed292e30e2354df0aa4f65742f27c28ce (diff)
downloadnextcloud-server-3c9b6f68096f763ba0605ce6eda5ee43765f4515.tar.gz
nextcloud-server-3c9b6f68096f763ba0605ce6eda5ee43765f4515.zip
improve status modal
Signed-off-by: szaimen <szaimen@e.mail.de> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'apps/user_status/src')
-rw-r--r--apps/user_status/src/components/SetStatusModal.vue19
1 files changed, 18 insertions, 1 deletions
diff --git a/apps/user_status/src/components/SetStatusModal.vue b/apps/user_status/src/components/SetStatusModal.vue
index db56ea282bc..95d1aa974d2 100644
--- a/apps/user_status/src/components/SetStatusModal.vue
+++ b/apps/user_status/src/components/SetStatusModal.vue
@@ -238,11 +238,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 {