Standardize bullet and numbered list styling with consistent indentation and spacing

This commit is contained in:
Marcus Quinn
2025-03-24 22:19:26 +00:00
parent 19cd4d3355
commit ea881f7691

View File

@ -1016,20 +1016,23 @@ body.wp-admin .button.pricing-button:hover,
} }
/* Readme list styling */ /* Readme list styling */
#readme .wp-allstars-markdown-content ul,
#readme .wp-allstars-markdown-content ol {
padding-left: 25px;
margin: 10px 0;
}
#readme .wp-allstars-markdown-content ul { #readme .wp-allstars-markdown-content ul {
list-style-type: disc; list-style-type: disc;
padding-left: 20px;
margin: 10px 0;
} }
#readme .wp-allstars-markdown-content ol { #readme .wp-allstars-markdown-content ol {
list-style-type: decimal; list-style-type: decimal;
padding-left: 20px;
margin: 10px 0;
} }
#readme .wp-allstars-markdown-content li { #readme .wp-allstars-markdown-content li {
margin-bottom: 6px; margin-bottom: 5px;
line-height: 1.4; line-height: 1.4;
display: list-item; display: list-item;
padding-left: 5px; /* Add consistent padding for all list items */
} }