Make WordPress Core

Opened 11 years ago

Closed 11 years ago

#25403 closed defect (bug) (fixed)

Saner CSS for row actions

Reported by: helen's profile helen Owned by: helen's profile helen
Milestone: 3.7 Priority: normal
Severity: minor Version:
Component: Administration Keywords: has-patch
Focuses: Cc:

Description

It is really dumb that we do this:

.row-actions {
	visibility: hidden;
	padding: 2px 0 0;
}

.mobile .row-actions {
	visibility: visible;
}

tr:hover .row-actions,
div.comment-item:hover .row-actions {
	visibility: visible;
}

.row-actions-visible {
	padding: 2px 0 0;
}

Attachments (1)

25403.diff (1.5 KB) - added by helen 11 years ago.

Download all attachments as: .zip

Change History (2)

@helen
11 years ago

#1 @helen
11 years ago

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

In 25592:

Saner CSS for row actions - now we can just target .row-actions instead of both .row-actions and .row-actions-visible. CSS for .row-actions-visible remains for now due to usage in plugins. Visibility is controlled by toggling a .visible class. fixes #25403.

Note: See TracTickets for help on using tickets.