Twenty Seventeen: Correct list item style for nested unordered lists.
Props macbookandrew, audrasjb. Merges [43493] to the 4.9 branch. Fixes #44109. Built from https://develop.svn.wordpress.org/branches/4.9@43494 git-svn-id: http://core.svn.wordpress.org/branches/4.9@43321 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
1f1b7df292
commit
e8b54ed885
|
@ -236,12 +236,12 @@ ol {
|
|||
counter-reset: item;
|
||||
}
|
||||
|
||||
ol li {
|
||||
ol > li {
|
||||
display: block;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
ol li:before {
|
||||
ol > li:before {
|
||||
content: counter(item);
|
||||
counter-increment: item;
|
||||
font-weight: 800;
|
||||
|
@ -584,7 +584,7 @@ object {
|
|||
counter-reset: item;
|
||||
}
|
||||
|
||||
.rtl ol li:before {
|
||||
.rtl ol > li:before {
|
||||
left: auto;
|
||||
right: -1.5em;
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.9.8-alpha-43492';
|
||||
$wp_version = '4.9.8-alpha-43494';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue