Bug #83443
closedLimit length of details in system info box
Added by Michael Schams almost 7 years ago. Updated almost 5 years ago.
100%
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 |
Updated by Riccardo De Contardi almost 7 years ago
what about adding to the CSS:
.dropdown-table-value{ word-break: break-word; }
Updated by Gerrit Code Review almost 7 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
Updated by Gerrit Code Review almost 7 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
Updated by Gerrit Code Review almost 7 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
Updated by Andreas Fernandez almost 7 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset cb6096f30790c074fdc39a731fcc36240e6821d6.
Updated by Gerrit Code Review almost 7 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
Updated by Andreas Fernandez almost 7 years ago
- Status changed from Under Review to Resolved
Applied in changeset 8a5b320910b52208c0ba17ec1bfd8227d3481cd0.
Updated by Gerrit Code Review almost 7 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
Updated by Andreas Fernandez almost 7 years ago
- Status changed from Under Review to Resolved
Applied in changeset 0ba14b9ca1e3722f1e75d63580a9b8ae36aa2eb5.
Updated by Andreas Kienast over 6 years ago
- Status changed from Resolved to New
Michael Schams just pinged me, the issue is not completely solved.
Updated by Michael Schams over 6 years ago
- File screenshot0001.png screenshot0001.png added
- File screenshot0002.png screenshot0002.png added
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.
Updated by Riccardo De Contardi about 6 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 about 6 years ago
- File TYPO3v9.5.0-SystemInfoBox.png TYPO3v9.5.0-SystemInfoBox.png added
- File TYPO3v9.5.0-EnvironmentOverview.png TYPO3v9.5.0-EnvironmentOverview.png added
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).
Updated by Riccardo De Contardi about 6 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; }
Updated by Gerrit Code Review over 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
Updated by Gerrit Code Review over 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
Updated by Riccardo De Contardi over 5 years ago
- Related to Bug #88522: Ugly scrollbar in "System Environment" modal for very long version strings added
Updated by Riccardo De Contardi over 5 years ago
can be abandoned? This should be solved with https://review.typo3.org/c/Packages/TYPO3.CMS/+/61041
Updated by Daniel Goerz almost 5 years ago
- Status changed from Under Review to Closed
Resolved with #88522