Twenty Twenty-One: Match bullets between editor and frontend.

Change bullet style on frontend nested unordered lists to `circle` to match the editor styles.

Props poena, mukesh27, mahfuz01, tejwanihemant.
Fixes #52412.


Built from https://develop.svn.wordpress.org/trunk@50350


git-svn-id: http://core.svn.wordpress.org/trunk@49961 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Peter Wilson 2021-02-15 23:52:04 +00:00
parent 3ed24991ba
commit 49f0fc9e53
5 changed files with 31 additions and 1 deletions

View File

@ -3827,10 +3827,18 @@ ul {
list-style-type: disc;
}
ul ul {
list-style-type: circle;
}
ol {
list-style-type: decimal;
}
ol ul {
list-style-type: circle;
}
dt {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
font-weight: bold;

View File

@ -19,10 +19,16 @@ ol {
ul {
list-style-type: disc;
ul {
list-style-type: circle;
}
}
ol {
list-style-type: decimal;
ul {
list-style-type: circle;
}
}
dt {

View File

@ -2685,10 +2685,18 @@ ul {
list-style-type: disc;
}
ul ul {
list-style-type: circle;
}
ol {
list-style-type: decimal;
}
ol ul {
list-style-type: circle;
}
dt {
font-family: var(--definition-term--font-family);
font-weight: bold;

View File

@ -2695,10 +2695,18 @@ ul {
list-style-type: disc;
}
ul ul {
list-style-type: circle;
}
ol {
list-style-type: decimal;
}
ol ul {
list-style-type: circle;
}
dt {
font-family: var(--definition-term--font-family);
font-weight: bold;

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.7-beta2-50349';
$wp_version = '5.7-beta2-50350';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.