Twenty Seventeen: Correct list item style for nested unordered lists.

Props macbookandrew, audrasjb.
Fixes #44109.
Built from https://develop.svn.wordpress.org/trunk@43493


git-svn-id: http://core.svn.wordpress.org/trunk@43320 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2018-07-17 16:35:24 +00:00
parent df49ab8363
commit 5d4df64715
2 changed files with 4 additions and 4 deletions

View File

@ -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;
}

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.0-alpha-43491';
$wp_version = '5.0-alpha-43493';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.