blob: 7e4dba7e50f493cbd8b1d7160043a742bc6d1d38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
$(document).ready(function() {
// Override styles of the footnotes.
document.querySelectorAll("d-footnote").forEach(function(footnote) {
footnote.shadowRoot.querySelector("sup > span")
.setAttribute("style", "color: var(--global-theme-color);");
footnote.shadowRoot.querySelector("d-hover-box").shadowRoot.querySelector("style").sheet
.insertRule(".panel {background-color: var(--global-bg-color) !important;}");
});
// Override styles of the citations.
document.querySelectorAll("d-cite").forEach(function(cite) {
cite.shadowRoot.querySelector("div > span")
.setAttribute("style", "color: var(--global-theme-color);");
cite.shadowRoot.querySelector("style").sheet
.insertRule("ul li a {color: var(--global-text-color) !important; text-decoration: none;}");
cite.shadowRoot.querySelector("style").sheet
.insertRule("ul li a:hover {color: var(--global-theme-color) !important;}");
cite.shadowRoot.querySelector("d-hover-box").shadowRoot.querySelector("style").sheet
.insertRule(".panel {background-color: var(--global-bg-color) !important;}");
});
})
|