Opened 5 years ago
Closed 5 years ago
#4612 closed defect (bug) (fixed)
Trac: Nav links are misplaced and invisible
Reported by: | SergeyBiryukov | Owned by: | coffee2code |
---|---|---|---|
Milestone: | Priority: | normal | |
Component: | Trac | Keywords: | has-screenshots |
Cc: |
Description
Background: #4513
Reported by @joyously in #meta on Slack.
[8916] caused Trac nav menus to be misplaced and displayed in white color on white background, making them invisible until you manually highlight the links. See the screenshots of the current and previous appearance.
At the moment, it's a bit tricky to reproduce, because the version of wp4.css
is bumped differently on Trac vs. the rest of WordPress.org, causing different versions to be cached.
https://wordpress.org/news/ currently uses version 80:
<link rel="stylesheet" href="//s.w.org/style/wp4.css?80" />
Trac still uses an older revision:
<link rel="stylesheet" href="https://s.w.org/style/wp4.css?78" />
Steps to reproduce
- Open any Trac ticket page, e.g. #4513.
- In browser's dev tools, replace
wp4.css?78
withwp4.css?80
to load the latest version. Or, just removefloat: left;
from#headline h2
, like [8916] did. - Notice the nav menu ("Handbook", "Blog", "Projects" links) disappear.
Suggested resolution:
- Either replicate [dotorg15156] (adding
float: left;
to#headline h2
) on Trac, or restore that removed piece globally inwp4.css
, after making sure it doesn't reintroduce the issue [8916] was trying to solve.
cc @coffee2code
Attachments (2)
Change History (5)
Note: See
TracTickets for help on using
tickets.
In 9058: