Skip to content

Commit

Permalink
アイコンリストブロックのインデントしたリストで順序リストの数字が表示されない不具合修正
Browse files Browse the repository at this point in the history
  • Loading branch information
yhira committed Oct 26, 2023
1 parent 211dcb8 commit 146f216
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion amp.css
Original file line number Diff line number Diff line change
Expand Up @@ -8002,7 +8002,7 @@ ul.timeline ul ul ul {
.iconlist-box ul li::before {
display: initial;
}
.iconlist-box ol:not(.has-list-style) li::before {
.iconlist-box ol:not(.has-list-style) > li::before {
display: none;
}
.iconlist-box.list-none ul {
Expand Down
4 changes: 2 additions & 2 deletions css/admin.css
Original file line number Diff line number Diff line change
Expand Up @@ -7507,7 +7507,7 @@ body.wp-admin {
.admin-settings .demo .iconlist-box ul li::before {
display: initial;
}
.admin-settings .demo .iconlist-box ol:not(.has-list-style) li::before {
.admin-settings .demo .iconlist-box ol:not(.has-list-style) > li::before {
display: none;
}
.admin-settings .demo .iconlist-box.list-none ul {
Expand Down Expand Up @@ -15476,7 +15476,7 @@ body.wp-admin {
.admin-settings .demo .iconlist-box ul li::before {
display: initial;
}
.admin-settings .demo .iconlist-box ol:not(.has-list-style) li::before {
.admin-settings .demo .iconlist-box ol:not(.has-list-style) > li::before {
display: none;
}
.admin-settings .demo .iconlist-box.list-none ul {
Expand Down
2 changes: 1 addition & 1 deletion css/gutenberg-editor.css
Original file line number Diff line number Diff line change
Expand Up @@ -3836,7 +3836,7 @@ figcaption {
.iconlist-box ul li::before {
display: initial;
}
.iconlist-box ol:not(.has-list-style) li::before {
.iconlist-box ol:not(.has-list-style) > li::before {
display: none;
}
.iconlist-box.list-none ul {
Expand Down
2 changes: 1 addition & 1 deletion scss/_iconlist-box.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
}
}
ol:not(.has-list-style){
li::before{
>li::before{
display: none;
}
}
Expand Down
2 changes: 1 addition & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -8027,7 +8027,7 @@ ul.timeline ul ul ul {
.iconlist-box ul li::before {
display: initial;
}
.iconlist-box ol:not(.has-list-style) li::before {
.iconlist-box ol:not(.has-list-style) > li::before {
display: none;
}
.iconlist-box.list-none ul {
Expand Down

0 comments on commit 146f216

Please sign in to comment.