Making WordPress.org

Opened 4 years ago

Closed 4 years ago

Last modified 3 years ago

#5316 closed defect (bug) (fixed)

Fix expander icon in Trac plugins source browser

Reported by: hareesh-pillai's profile Hareesh Pillai Owned by: otto42's profile Otto42
Milestone: Priority: normal
Component: Trac Keywords:
Cc:

Description

While browsing the source code of plugins on Trac, the icon denoting if the folder is expanded or not is broken. The CSS rule has to be tweaked a bit to fix this.

Link to browse plugin source: https://plugins.trac.wordpress.org/browser/akismet

File to be changed: https://s.w.org/style/trac/wp-trac.css

Present code:

table.dirlist tr.expanded span.expander:before {
	content: "\f140"; /* dashicons-arrow-down */
	width: 15px;
}

Change proposed:

table.dirlist tr span.expander.expanded:before {
    content: "\f140"; /* dashicons-arrow-down */
    width: 15px;
}

Change History (2)

This ticket was mentioned in Slack in #meta by hareesh-pillai. View the logs.


4 years ago

#2 @Otto42
4 years ago

  • Owner set to Otto42
  • Resolution set to fixed
  • Status changed from new to closed

In 10070:

Trac: Fix expander icon styling to work correctly. Fixes #5316

Note: See TracTickets for help on using tickets.