mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-11-12 01:50:52 +01:00
Fixed wrong offset of targeted footnote backrefs
This commit is contained in:
parent
95d014032f
commit
6abed20acb
File diff suppressed because one or more lines are too long
@ -38,7 +38,7 @@
|
||||
<script src="{{ base_url }}/assets/javascripts/modernizr-1df76c4e58.js"></script>
|
||||
{% endblock %}
|
||||
{% block styles %}
|
||||
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-78278d826e.css">
|
||||
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-f98ca285f9.css">
|
||||
{% if config.extra.palette %}
|
||||
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-8817cfa535.palette.css">
|
||||
{% endif %}
|
||||
|
@ -27,6 +27,22 @@
|
||||
// Scoped in typesetted content to match specificity of regular content
|
||||
.md-typeset {
|
||||
|
||||
// All superscripts with a footnote reference or back reference
|
||||
sup[id^="fnref:"] {
|
||||
|
||||
// Add spacing to anchor for offset
|
||||
&::before {
|
||||
display: inline-block;
|
||||
content: "";
|
||||
}
|
||||
|
||||
// Targeted anchor
|
||||
&:target::before {
|
||||
margin-top: -(5.6rem + 2.4rem + 1.8rem);
|
||||
padding-top: (5.6rem + 2.4rem + 1.8rem);
|
||||
}
|
||||
}
|
||||
|
||||
// Footnotes extension
|
||||
.footnote {
|
||||
color: $md-color-black--light;
|
||||
|
Loading…
Reference in New Issue
Block a user