Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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>
  • Loading branch information
szaimen authored and npmbuildbot-nextcloud[bot] committed Jul 15, 2021
commit 641307d0af970d4d4ceae4aa5e442c45cc042338
4 changes: 2 additions & 2 deletions apps/user_status/js/user-status-menu.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/user_status/js/user-status-menu.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions apps/user_status/js/user-status-modal.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/user_status/js/user-status-modal.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions apps/user_status/src/components/ClearAtSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ export default {

.multiselect {
flex-grow: 1;
min-width: 130px;
}
}
</style>
7 changes: 6 additions & 1 deletion apps/user_status/src/components/SetStatusModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -282,4 +281,10 @@ export default {
}
}

@media only screen and (max-width: 500px) {
.set-status-modal__online-status {
grid-template-columns: none !important;
}
}

</style>