Closed
Bug 1481019
Opened 7 years ago
Closed 7 years ago
Long titles overlap in breadcrumbs and add unecessary width to page from title
Categories
(developer.mozilla.org Graveyard :: Design, enhancement)
Tracking
(Not tracked)
RESOLVED
DUPLICATE
of bug 1419877
People
(Reporter: tossj, Unassigned)
Details
(Whiteboard: [specification][type:bug])
Attachments
(2 files)
What did you do?
================
1. Visit https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/webRequest/MAX_HANDLER_BEHAVIOR_CHANGED_CALLS_PER_10_MINUTES
What happened?
==============
Due to the number of characters of the title topic (webRequest.MAX_HANDLER_BEHAVIOR_CHANGED_CALLS_PER_10_MINUTES), the title goes way out to the right of the page, creating a large white space on the right side.
Also, the long title length overflows from the breadcrumbs section on the left side, into the main content.
What should have happened?
==========================
The long titles should be broken to use more lines, or the text should be using overflow CSS logic to replace text overflows with ellipsis or something.
Is there anything else we should know?
======================================
There is a document-class CSS class. The following CSS fixes the title:
.document-class {
word-break: break-all;
}
For the overflowing in the breadcrumbs the following CSS can be added:
.crumbs li {
word-break: break-all;
}
These two fixes cause the long string to use more lines to fit. Managing text overflow could be another solution.
document-class in the initial report should be document-title. The following CSS fixes the title:
.document-title {
word-break: break-all;
}
Updated•7 years ago
|
Status: UNCONFIRMED → RESOLVED
Closed: 7 years ago
Resolution: --- → DUPLICATE
Updated•6 years ago
|
Product: developer.mozilla.org → developer.mozilla.org Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•