diff options
author | szaimen <szaimen@e.mail.de> | 2021-07-09 10:13:15 +0200 |
---|---|---|
committer | npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com> | 2021-07-09 09:30:56 +0000 |
commit | cf8e380f655d669190c70bd51b18fcd90c7bfc6e (patch) | |
tree | de3de8336e5755f4d14b6a8419d93f8fc818b940 /apps/user_status/src | |
parent | c2f62ee0b8c779808992d053494a845daa3d33b7 (diff) | |
download | nextcloud-server-cf8e380f655d669190c70bd51b18fcd90c7bfc6e.tar.gz nextcloud-server-cf8e380f655d669190c70bd51b18fcd90c7bfc6e.zip |
make user status usable on mobile
Signed-off-by: szaimen <szaimen@e.mail.de>
Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
Diffstat (limited to 'apps/user_status/src')
-rw-r--r-- | apps/user_status/src/components/ClearAtSelect.vue | 1 | ||||
-rw-r--r-- | apps/user_status/src/components/SetStatusModal.vue | 7 |
2 files changed, 7 insertions, 1 deletions
diff --git a/apps/user_status/src/components/ClearAtSelect.vue b/apps/user_status/src/components/ClearAtSelect.vue index c813831c101..96cc171416c 100644 --- a/apps/user_status/src/components/ClearAtSelect.vue +++ b/apps/user_status/src/components/ClearAtSelect.vue @@ -97,6 +97,7 @@ export default { .multiselect { flex-grow: 1; + min-width: 130px; } } </style> diff --git a/apps/user_status/src/components/SetStatusModal.vue b/apps/user_status/src/components/SetStatusModal.vue index 0613a2be38c..50fa79b4cc5 100644 --- a/apps/user_status/src/components/SetStatusModal.vue +++ b/apps/user_status/src/components/SetStatusModal.vue @@ -238,7 +238,6 @@ export default { <style lang="scss" scoped> .set-status-modal { - min-width: 500px; min-height: 200px; padding: 8px 20px 20px 20px; // Enable scrollbar for too long content, same way as in Dashboard customize @@ -282,4 +281,10 @@ export default { } } +@media only screen and (max-width: 500px) { + .set-status-modal__online-status { + grid-template-columns: none !important; + } +} + </style> |