Differences From Artifact [7608213fba]:
- File src/default.css — part of check-in [ebce0f357e] at 2022-01-26 14:50:15 on branch markdown-footnotes — Initial support for [forum:/forumthread/d752446a4f63f390|footnotes in Markdown]. <br>This is WIP: support of multiline notes and code clean-up are pending. (user: george size: 38541)
To Artifact [96aa4df2e9]:
- File src/default.css — part of check-in [e3710ccd3a] at 2022-01-29 00:19:48 on branch markdown-footnotes — Decouple parsing and HTML-specific rendering. Add support for back references in the list of footnotes. WIP - inline and multiline footnotes are not yet implemented. (user: george size: 38654)
| ︙ | |||
1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 | 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 | + + + + |
font-family: monospace;
}
div.content div.markdown > ol.footnotes {
font-size: 90%;
}
div.content div.markdown > ol.footnotes > li {
margin-bottom: 0.5em;
}
div.content div.markdown > ol.footnotes > li > .footnote-backrefs {
margin-right: 1em;
font-weight: bold;
}
/* Objects in the "desktoponly" class are invisible on mobile */
@media screen and (max-width: 600px) {
.desktoponly {
display: none;
}
|
| ︙ |