Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug]: mobile view in settings > system broken #361

Closed
6 of 8 tasks
Dennis1993 opened this issue Mar 27, 2022 · 3 comments
Closed
6 of 8 tasks

[Bug]: mobile view in settings > system broken #361

Dennis1993 opened this issue Mar 27, 2022 · 3 comments

Comments

@Dennis1993
Copy link
Contributor

Dennis1993 commented Mar 27, 2022

⚠️ This issue respects the following points: ⚠️

  • This is a bug, not a question or a configuration/webserver/proxy issue.
  • This issue is not already reported on Github (I've searched it).
  • Nextcloud Server is up to date. See Maintenance and Release Schedule for supported versions.
  • I agree to follow Nextcloud's Code of Conduct.

Bug description

The boxes on the page settings > system is not correct on mobile devices

EE84F4BB-A4B5-4398-BA41-230A2B901074

Steps to reproduce

  1. open settings > system with an iPhone
  2. the boxes are not correct formated

Expected behavior

The boxes uses the full width and not 50% of the page

Installation method

Manual installation

Operating system

Debian/Ubuntu

PHP engine version

PHP 8.0

Web server

Apache (supported)

Database engine version

MariaDB

Is this bug present after an update or on a fresh install?

Updated from a minor version (ex. 22.2.3 to 22.2.4)

Are you using the Nextcloud Server Encryption module?

Encryption is Enabled

What user-backends are you using?

  • Default user-backend (database)
  • LDAP/ Active Directory
  • SSO - SAML
  • Other

Configuration report

No response

List of activated Apps

Default with LDAP, Deck and Talk activated

Nextcloud Signing status

No response

Nextcloud Logs

No response

Additional info

No response

@szaimen szaimen transferred this issue from nextcloud/server Mar 27, 2022
@szaimen
Copy link
Contributor

szaimen commented Sep 3, 2022

Possible css fix:

@media only screen and (max-width: 700px) {
    .col-4, .col-6 {
        flex-basis: 50%;
    	max-width: 50%;
    	min-width: 50%;
        
    }
}

@media only screen and (max-width: 500px) {
    .col-4, .col-6 {
        flex-basis: 100%;
    	max-width: 100%;
    	min-width: 100%;
    }
}

.chart-container canvas {
    max-height:400px;
}

Dennis1993 added a commit that referenced this issue Sep 4, 2022
Fix for #385 and #361

Signed-off-by: Dennis1993 <[email protected]>
Dennis1993 added a commit that referenced this issue Sep 4, 2022
Fix for #385 and #361

Signed-off-by: Dennis1993 <[email protected]>
This was referenced Sep 4, 2022
Dennis1993 added a commit that referenced this issue Sep 4, 2022
Fix for #385 and #361

Signed-off-by: Dennis1993 <[email protected]>
@Dennis1993
Copy link
Contributor Author

Thank you, I've created a pull request! 👍

@Dennis1993
Copy link
Contributor Author

Duplicate of #385

@Dennis1993 Dennis1993 marked this as a duplicate of #385 Sep 12, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants