Opened 14 years ago
Closed 14 years ago
#15558 closed task (blessed) (fixed)
Re-factor network/site-users.php to use a list table
Reported by: | PeteMall | Owned by: | PeteMall |
---|---|---|---|
Milestone: | 3.1 | Priority: | normal |
Severity: | normal | Version: | 3.1 |
Component: | Multisite | Keywords: | has-patch |
Focuses: | Cc: |
Description
Adapt wp-admin/includes/class-wp-users-list-table.php for the Network Admin Site Users page.
Attachments (8)
Change History (25)
#2
@
14 years ago
- Type changed from defect (bug) to task (blessed)
TODO:
- Screen Option - Users per page
- Handle redirection from user-edit.php
- Contextual help
Patches welcome ;)
#10
follow-up:
↓ 11
@
14 years ago
Suggestion:
Instead of changing
tr.site-mature {
to
tr.site-mature, a.site-mature {
Why don't we change it to
.site-mature {
Unless there are other instances of .site-mature within different tags which require different styling then this would be the best way to go. Same for .site-deleted and .site-spammed and .site-archived
#11
in reply to:
↑ 10
@
14 years ago
Replying to JohnONolan:
Suggestion:
Instead of changing
tr.site-mature {to
tr.site-mature, a.site-mature {Why don't we change it to
.site-mature {Unless there are other instances of .site-mature within different tags which require different styling then this would be the best way to go. Same for .site-deleted and .site-spammed and .site-archived
Probably true - I was too lazy to search for other instances at the time I was doing this. :-(
#12
@
14 years ago
User rows are not currently highlighted when a user is set as spam. Changing line 146 to this will fix it:
$alt .= " $col";
work in progress