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:
parent
3ed24991ba
commit
49f0fc9e53
|
@ -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;
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue