Problem/Motivation
The Drupal 7 version of Notify used a CSS-styled table to display tabular data under the "Skip flags" and "Users" tab.
It used to look like this:

But currently, it looks like this:

These are not styled in the D8/9 version of the project.
Steps to reproduce
Just visit the "Skip flags" and "Users" tab. Tabular styling is missing.
Proposed resolution
Provide theming to make this to appear like they in the Drupal 7 version.
User interface changes
Tabular data under these tabs will be styled in a tabular format.
Comments
Comment #2
gisleAdded screendump from #2952310: bulk user screen UI needs formatting.
Comment #3
gisleChanging version to current D8/D9 branch.
Comment #4
larisse commentedHi! I create a patch for this bug!
Comment #6
gislePatch of UsersForm.php fixes the bug in that table. These have been committed.
Patch of SkipForm.php produces the following errors when there are posts queued:
Notice: Undefined index: nid in Drupal\notify\Form\SkipForm->buildForm() (line 145 of modules/contrib/notify/src/Form/SkipForm.php).
Notice: Undefined index: cid in Drupal\notify\Form\SkipForm->buildForm() (line 148 of modules/contrib/notify/src/Form/SkipForm.php).
Notice: Undefined index: created in Drupal\notify\Form\SkipForm->buildForm() (line 152 of modules/contrib/notify/src/Form/SkipForm.php).
Notice: Undefined index: updated in Drupal\notify\Form\SkipForm->buildForm() (line 155 of modules/contrib/notify/src/Form/SkipForm.php).
Notice: Undefined index: title in Drupal\notify\Form\SkipForm->buildForm() (line 158 of modules/contrib/notify/src/Form/SkipForm.php).
Notice: Undefined index: dist in Drupal\notify\Form\SkipForm->buildForm() (line 162 of modules/contrib/notify/src/Form/SkipForm.php).
Comment #8
gisleFixes to SkipForm.php also pushed to the latest snapshot of 2.0.x-dev. Thanks for the patch.
Comment #9
larisse commentedThank you @gisle