#32391 closed defect (bug) (fixed)
About page: not enough space for localized navigation links
Reported by: | pavelevap | Owned by: | helen |
---|---|---|---|
Milestone: | 4.3 | Priority: | normal |
Severity: | normal | Version: | 4.3 |
Component: | Help/About | Keywords: | has-patch |
Focuses: | ui | Cc: |
Description
After redirecting to About page (after WP update), there is not enough space for translated navigation links bellow. But there is enough space available, so it should not be a problem even if translation is longer then original?
See attached screenshot.
Attachments (3)
Change History (10)
#1
@
10 years ago
- Keywords has-patch added
Just added a quick fix that will expand the container of the links to take all the available width, allowing longer localized links. The div
tagname was added to override the .about-wrap .two-col > div
rule, avoiding !important
usage.
#2
@
10 years ago
- Component changed from General to Help/About
- Focuses ui added
- Milestone changed from Awaiting Review to 4.3
#3
@
10 years ago
- Keywords needs-patch added; has-patch removed
Seems to me the <hr>
and return-to-dashboard
div need to move out of the feature-section
div. feature-section
has a border-bottom too, then no need for the <hr>
anymore.
#4
@
10 years ago
@helen +1.
Looking at the HTML in about.php
it appears that the .return-to-dashboard
has been wrongly inserted in the .feature-section
in the first place. Attaching a new patch that moves .return-to-dashboard
to the correct place, and also the <hr>
is removed as unnecessary, because of the .feature-section
bottom border.
With this, the CSS modification that the previous patch was doing is not necessary.
#6
@
10 years ago
- Owner set to helen
- Resolution set to fixed
- Status changed from new to closed
In 32636:
In about.php, stretch the
.return-to-dashboard
section towidth: 100%
to support the longer localized links. Also addingdiv
tagname as prefix to the.return-to-dashboard
classname to override the.about-wrap .two-col > div
rule, avoiding!important
usage.