Added support for nested lists to email newsletter template (#17161)

Refs https://github.com/TryGhost/Team/issues/1919
This commit is contained in:
Sanne de Vries 2023-07-03 11:26:16 +02:00 committed by GitHub
parent 4a6a61b29b
commit 1a9ca8a993
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 32 additions and 0 deletions

View File

@ -111,10 +111,26 @@ ul {
list-style: disc;
}
ul ul {
list-style: circle;
}
ul ul ul {
list-style: square;
}
ol {
list-style: decimal;
}
ol ol {
list-style: lower-alpha;
}
ol ol ol {
list-style: lower-roman;
}
ul,
ol {
max-width: 100%;

View File

@ -129,10 +129,26 @@ ul {
list-style: disc;
}
ul ul {
list-style: circle;
}
ul ul ul {
list-style: square;
}
ol {
list-style: decimal;
}
ol ol {
list-style: lower-alpha;
}
ol ol ol {
list-style: lower-roman;
}
ul,
ol {
max-width: 100%;