Twenty Seventeen: Remove unnecessary ol styles from editor.

Twenty Seventeen was designed with bolded numbers for its ordered list styles. This was removed from the theme prior to launch, but it was left in the editor styles, so it needed to be removed there, too.

Props mmaumio, edpittol.
Fixes #44775.



git-svn-id: https://develop.svn.wordpress.org/branches/5.0@44203 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
laurelfulford 2018-12-14 22:52:55 +00:00
parent 5853c653fc
commit 935fff4ab3

View File

@ -232,23 +232,10 @@ ul {
list-style: disc;
}
ol {
counter-reset: item;
}
ol > li {
display: block;
position: relative;
}
ol > li:before {
content: counter(item);
counter-increment: item;
font-weight: 800;
left: -1.5em;
position: absolute;
}
li > ul,
li > ol {
margin-bottom: 0;
@ -580,10 +567,6 @@ object {
text-align: right;
}
.rtl ol {
counter-reset: item;
}
.rtl ol > li:before {
left: auto;
right: -1.5em;