Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions src/wp-admin/css/common.css
Original file line number Diff line number Diff line change
Expand Up @@ -1587,6 +1587,29 @@ div.error.notice-alt {
background-color: #fff;
}

/* Restore list styles inside admin notices. The global ul { list-style: none }
* and ul, ol { padding: 0 } resets remove bullets/numbers and indentation. Use
* margin-left instead of padding-left as padding is zeroed globally. */
.notice ol,
div.error ol,
div.updated ol {
list-style: decimal outside;
margin-left: 1.8em;
}

.notice ul,
div.error ul,
div.updated ul {
list-style: disc outside;
margin-left: 1.8em;
}

.notice li,
div.error li,
div.updated li {
margin: 0 0 0.5em;
}

#plugin-information-footer .update-now:not(.button-disabled):before {
color: #d63638;
content: "\f463";
Expand Down
Loading