Making WordPress.org

Opened 9 years ago

Closed 9 years ago

#2028 closed defect (bug) (fixed)

Topics in the spam view should not use the `bbp-lead-topic` background color

Reported by: netweb's profile netweb Owned by: coffee2code's profile coffee2code
Milestone: Priority: normal
Component: Support Forums Keywords: has-patch commit
Cc:

Description

The spam view at https://wordpress.org/support/view/spam/ currently uses the bbp-lead-topic CSS class as the background colour for spammed topics

Via Slack here: https://wordpress.slack.com/archives/forums/p1473684980003792:

zoonini: hey peeps, anyone know the difference between the light pink and the orange ones in the spam queue?
zoonini: they both are author-flagged and marked as spam
sergey: @zoonini Looking at the HTML source, seems like the orange ones are initial topic posts, and light pink ones are replies.

Currently via https://meta.trac.wordpress.org/browser/sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/style.css?marks=309-315#L309

#bbpress-forums ul.bbp-lead-topic li.bbp-body {
        border: 1px solid #ffe399;
}

#bbpress-forums ul.bbp-lead-topic li.bbp-body div.topic {
        background-color: #fff8e5;

It should inherit the background alternate colors from: https://plugins.trac.wordpress.org/browser/bbpress/trunk/templates/default/css/bbpress.css?marks=48-56#L48

#bbpress-forums .status-trash.even,
#bbpress-forums .status-spam.even {
        background-color: #fee;
}

#bbpress-forums .status-trash.odd,
#bbpress-forums .status-spam.odd {
        background-color: #fdd;
}

Attachments (1)

meta-2028.patch (994 bytes) - added by SergeyBiryukov 9 years ago.

Download all attachments as: .zip

Change History (4)

This ticket was mentioned in Slack in #forums by netweb. View the logs.


9 years ago

#2 @SergeyBiryukov
9 years ago

  • Keywords has-patch commit added; needs-patch removed

#3 @coffee2code
9 years ago

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

In 4070:

Forums Theme: Set background-color for spam, trash, and pending replies to supersede defaults.

Props SergeyBiryukov.
Fixes #2028.

Note: See TracTickets for help on using tickets.