| Project: | Drupal core |
| Version: | 7.x-dev |
| Component: | Seven theme |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed (duplicate) |
Issue Summary
The current CSS file in the seven admin theme in D7 does not make a distinction when it displays UL/LI list items vs. P paragraphs. It also doesn't have enough space between paragraphs and between LI items, in my opinion. This may not matter on most pages of the admin interface, but it is making some help screens hard to read.
For instance, this is part of the Content Translation module help page admin/help/translation (see attached screenshot, and note that this is from a new version of the help screen, patch in progress at #537828: Help text for core modules - update to conform to new standard, but the old one also had UL lists). The part under "Configuring content..." is a UL, but you can't tell, and the lack of space between LI items makes it pretty hard to read.
Suggested change coming shortly, along with an "after" screen shot.
| Attachment | Size | Status | Test result | Operations |
|---|---|---|---|---|
| before_ul.JPG | 49.16 KB | Ignored: Check issue status. | None | None |
Comments
#1
Hmmm... I am not sure how to fix this, because these UL/LI items in help files don't have a specific CSS class. The reset.css file in the seven theme sets the list style to none.
Adding this to the main style.css file in the seven theme:
ul li {list-style: disc;
}
works fine for me on those help pages, but I'm not sure what else it might break.
Here's a screenshot of the page now.
I'm not sure what types of bullets the seven theme designers favor, but regular non-nav-menu ULs need to have something...
#2
#563390: Seven theme lacks formatting on common html elements such as lists, paragraphs & <code>