Fix tooltip CSS

This commit is contained in:
2025-11-27 16:40:22 +01:00
parent 62072c3ceb
commit 0e4910137d
2 changed files with 27 additions and 0 deletions

View File

@@ -727,6 +727,21 @@ function enableFootnotes() {
document.addEventListener('DOMContentLoaded', enableFootnotes);
#+END_SRC
#+BEGIN_SRC css :tangle ../html/static/style.css
.footnote-tooltip {
position: 'absolute';
z-index: 1000;
background-color: var(--background-tooltip);
border: 1px solid var(--accent1);
border-radius: = 4px;
padding: 8px 12px;
max-width: 300px;
font-size: calc(var(--font-size) * 0.9);
box-shadow: 1px 1px 1px var(--grey2);
}
#+END_SRC
** Appearance
*** Global :autocollapse: