serverinfo icon indicating copy to clipboard operation
serverinfo copied to clipboard

[Bug]: mobile view of settings > system out of boxes

Open Dennis1993 opened this issue 3 years ago • 3 comments

⚠️ This issue respects the following points: ⚠️

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

Bug description

If I open the Settings page as an Admin and go to System tab, the boxes in the screenshot are not breaks in a new line. I think it would be better to set every box to 100% without floating (only on desktop)

04953F43-B469-4758-88C2-3C963FCED94C F34A7306-4E7A-4F22-83D1-EEE7E4CEE015

Steps to reproduce

  1. go to settings > system
  2. see wrong aligned boxes

Expected behavior

Every box should be in a single line

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 to a major version (ex. 22.2.3 to 23.0.1)

Are you using the Nextcloud Server Encryption module?

Encryption is Enabled

What user-backends are you using?

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

Configuration report

No response

List of activated Apps

Not useful

Nextcloud Signing status

No response

Nextcloud Logs

No response

Additional info

No response

Dennis1993 avatar Jun 03 '22 20:06 Dennis1993

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;
}

szaimen avatar Sep 03 '22 17:09 szaimen

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

Dennis1993 avatar Sep 04 '22 10:09 Dennis1993

Possibly related: #320 and #195.

joshtrichards avatar Jul 16 '23 21:07 joshtrichards