Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use child selectors to fix rtfd/sphinx_rtd_theme#484 #13

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions sass/wyrm_core/_type.sass
Original file line number Diff line number Diff line change
Expand Up @@ -201,32 +201,32 @@ code
list-style: disc
line-height: $base-line-height
margin-bottom: $base-line-height
li
> li
list-style: disc
margin-left: $base-line-height
p:last-child
margin-bottom: 0
ul
margin-bottom: 0
li
list-style: circle
li
list-style: square
ol li
> li
list-style: circle
ul > li
list-style: square
ol > li
list-style: decimal

%wy-plain-list-decimal
list-style: decimal
line-height: $base-line-height
margin-bottom: $base-line-height
li
> li
list-style: decimal
margin-left: $base-line-height
p:last-child
margin-bottom: 0
ul
margin-bottom: 0
li
> li
list-style: disc


Expand Down