Skip to content

Commit

Permalink
Fix SASS syntax errors from #967
Browse files Browse the repository at this point in the history
This introduced syntax errors that were not picked up in review, the
`:not()` psuedo selector can't lead a selector in SASS.
  • Loading branch information
agjohnson committed Aug 17, 2022
1 parent 34e29e6 commit 2dbaef8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion sphinx_rtd_theme/static/css/theme.css

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions src/sass/_theme_rst.sass
Expand Up @@ -515,10 +515,10 @@
border-radius: $base-line-height / 6
padding: ($base-line-height / 10) ($base-line-height / 4)
margin: auto ($base-line-height / 12)
:not(kbd) > kbd,
:not(kbd) > .kbd,
:not(.kbd) > kbd,
:not(.kbd) > .kbd
&:not(kbd) > kbd,
&:not(kbd) > .kbd,
&:not(.kbd) > kbd,
&:not(.kbd) > .kbd
color: inherit
font-size: 80%
background-color: lighten($text-light, 30%)
Expand Down

0 comments on commit 2dbaef8

Please sign in to comment.