What CSS classes need to be defined?
What needs to be supported? Do we need to worry about any conflicts with the existing styles?
Currently, the list styles PolicyStat uses. Customers can also configure their own with some manual CSS editing, which some have done.
.document_body ol li {
margin-top: .5em;
}
.document_body ol {
list-style-type:upper-alpha;
}
.document_body ol ol {
list-style-type:decimal;
}
.document_body ol ol ol {
list-style-type:lower-alpha;
}
.document_body ol ol ol ol {
list-style-type: lower-roman;
}
.document_body ol ol ol ol ol {
list-style-type: lower-alpha;
}
.document_body ol ol ol ol ol ol {
list-style-type: lower-roman;
What CSS classes need to be defined?
What needs to be supported? Do we need to worry about any conflicts with the existing styles?
Currently, the list styles PolicyStat uses. Customers can also configure their own with some manual CSS editing, which some have done.