Project

General

Profile

Actions

Bug #83443

closed

Limit length of details in system info box

Added by Michael Schams over 6 years ago. Updated over 4 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Backend User Interface
Target version:
-
Start date:
2017-12-29
Due date:
% Done:

100%

Estimated time:
TYPO3 Version:
9
PHP Version:
7.2
Tags:
Complexity:
Is Regression:
Sprint Focus:

Description

In case some details shown in the system information box are extraordinary long (e.g. the PHP version string), the values exceed the limits of the box.

The example in the attached screenshot originates from a standard Debian GNU/Linux 9 (Stretch) installation with the PHP 7.2 packages from Ondrej Sury https://deb.sury.org - a commonly used source for PHP version 7.2 under Debian (and therefore we will likely see long PHP version strings in TYPO3 v9).






Files

typo3-be-sysinfo-box.png (72.7 KB) typo3-be-sysinfo-box.png Michael Schams, 2017-12-29 03:45
screenshot0001.png (41.9 KB) screenshot0001.png in TYPO3 v8.7.16 Michael Schams, 2018-06-12 21:38
screenshot0002.png (31.3 KB) screenshot0002.png in TYPO3 v9.3.0 Michael Schams, 2018-06-12 21:38
TYPO3v9.5.0-SystemInfoBox.png (93.1 KB) TYPO3v9.5.0-SystemInfoBox.png Michael Schams, 2018-10-04 23:41
TYPO3v9.5.0-EnvironmentOverview.png (91.3 KB) TYPO3v9.5.0-EnvironmentOverview.png Michael Schams, 2018-10-04 23:41

Related issues 1 (0 open1 closed)

Related to TYPO3 Core - Bug #88522: Ugly scrollbar in "System Environment" modal for very long version stringsClosed2019-06-07

Actions
Actions #1

Updated by Riccardo De Contardi over 6 years ago

what about adding to the CSS:

.dropdown-table-value{
 word-break: break-word;
}

Actions #2

Updated by Gerrit Code Review over 6 years ago

  • Status changed from New to Under Review

Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/55258

Actions #3

Updated by Gerrit Code Review over 6 years ago

Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/55258

Actions #4

Updated by Gerrit Code Review over 6 years ago

Patch set 1 for branch TYPO3_8-7 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/55315

Actions #5

Updated by Andreas Fernandez over 6 years ago

  • Status changed from Under Review to Resolved
  • % Done changed from 0 to 100
Actions #6

Updated by Gerrit Code Review over 6 years ago

  • Status changed from Resolved to Under Review

Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/55320

Actions #7

Updated by Andreas Fernandez over 6 years ago

  • Status changed from Under Review to Resolved
Actions #8

Updated by Gerrit Code Review over 6 years ago

  • Status changed from Resolved to Under Review

Patch set 1 for branch TYPO3_8-7 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/55325

Actions #9

Updated by Andreas Fernandez over 6 years ago

  • Status changed from Under Review to Resolved
Actions #10

Updated by Andreas Kienast almost 6 years ago

  • Status changed from Resolved to New

Michael Schams just pinged me, the issue is not completely solved.

Updated by Michael Schams almost 6 years ago

Re-open ticket: issue re-appeared.

∎ reproducible in TYPO3 v8.7.10
∎ reproducible in TYPO3 v8.7.16
∎ reproducible in TYPO3 v9.3.0 (maybe earlier)

See attached screenshot0001.png and screenshot0002.png.

Actions #12

Updated by Riccardo De Contardi over 5 years ago

  • Status changed from New to Needs Feedback

What browser are you using?

can you test it with the latest 8.7 and 9.5 ? I am not able to reproduce it using Chrome (latest) on MAC.

Updated by Michael Schams over 5 years ago

Issue occurs with Firefox Quantum 60.2.2esr (64-bit), but I can confirm it works fine in Chrome.
2x new screenshots attached (TYPO3 9.5.0 + Firefox Quantum).

Actions #14

Updated by Riccardo De Contardi over 5 years ago

  • Status changed from Needs Feedback to New

Oh, yes thank you! It seems that Firefox does not support word-break: break-word; instead you should use overflow-wrap: break-word; (https://stackoverflow.com/questions/4282757/how-can-i-make-firefox-word-break-with-css)

Plus, it still does not work inside the div that has a display:table-cell

I found this combination that should work:

.dropdown-table{
     table-layout:fixed;
}

.dropdown-table-column{
    word-break:break-word;
    overflow-wrap:break-word;
}

Actions #15

Updated by Gerrit Code Review about 5 years ago

  • Status changed from New to Under Review

Patch set 4 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/60428

Actions #16

Updated by Gerrit Code Review about 5 years ago

Patch set 6 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/60428

Actions #17

Updated by Riccardo De Contardi almost 5 years ago

  • Related to Bug #88522: Ugly scrollbar in "System Environment" modal for very long version strings added
Actions #18

Updated by Riccardo De Contardi almost 5 years ago

can be abandoned? This should be solved with https://review.typo3.org/c/Packages/TYPO3.CMS/+/61041

Actions #19

Updated by Daniel Goerz over 4 years ago

  • Description updated (diff)
Actions #20

Updated by Daniel Goerz over 4 years ago

  • Status changed from Under Review to Closed

Resolved with #88522

Actions

Also available in: Atom PDF