Making WordPress.org


Ignore:
Timestamp:
03/02/2022 06:40:41 AM (3 years ago)
Author:
dd32
Message:

Login: Pending user admin: Add colour highlighting to quickly scan accounts.

Experimenting, this might be too much and be removed.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/admin/ui.php

    r11620 r11622  
    8484            overflow: scroll;
    8585        }
     86        .wp-list-table.toplevel_page_user-registrations > tbody > tr.created {
     87            background-color: rgba(74, 202, 12, 0.06);
     88        }
     89        .wp-list-table.toplevel_page_user-registrations > tbody > tr.manually-approved {
     90            background-color: rgba(74, 202, 12, 0.12);
     91        }
     92        .wp-list-table.toplevel_page_user-registrations > tbody > tr.cleared {
     93            background-color: rgba(202, 181, 12, 0.06)
     94        }
     95        .wp-list-table.toplevel_page_user-registrations > tbody > tr.failed {
     96            background-color: rgba(202, 12, 12, 0.06)
     97        }
     98        .wp-list-table.toplevel_page_user-registrations > tbody > tr.blocked {
     99            background-color: rgba(202, 12, 12, 0.12)
     100        }
     101        .wp-list-table.toplevel_page_user-registrations > tbody td {
     102            border-bottom: 1px solid #cecece;
     103        }
     104        .wp-list-table.toplevel_page_user-registrations > tbody hr {
     105            opacity: 0.5;
     106        }
    86107    </style>
    87108    <?php
Note: See TracChangeset for help on using the changeset viewer.