Skip to content

Commit

Permalink
fix(styles): missing custom footnote decorations color
Browse files Browse the repository at this point in the history
  • Loading branch information
sparanoid committed Dec 19, 2015
1 parent 5a48662 commit 03d6841
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions _app/_includes/themes/curtana/includes/css-variables.html
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,14 @@
color: {{ page.scheme-code }};
}
{% endif %}

{% if page.scheme-text %}
hr::before,
.footnotes::before {
background: {{ page.scheme-text }};
box-shadow: 20px 0 0 0 {{ page.scheme-text }}, -20px 0 0 0 {{ page.scheme-text }};
}
{% endif %}

{% if page.scheme-text and page.scheme-link %}
.note,
Expand All @@ -112,13 +120,4 @@
color: {{ page.scheme-hover }};
}
{% endif %}

{% if page.scheme-text %}
hr::before,
.footnotes::before {
background: {{ page.scheme-text }};
box-shadow: 20px 0 0 0 {{ page.scheme-text }}, -20px 0 0 0 {{ page.scheme-text }};
}
{% endif %}

</style>

0 comments on commit 03d6841

Please sign in to comment.