aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRapptz <[email protected]>2020-12-21 03:18:47 -0500
committerRapptz <[email protected]>2020-12-21 03:18:47 -0500
commit66ede7c5a09d5d8a6ace3b6cba0046e561dacfb7 (patch)
tree0fd04803265d94df4a1a8fd86b98d3d0ddaf19a8 /docs
parentFix constructor colours being off in dark mode (diff)
downloaddiscord.py-66ede7c5a09d5d8a6ace3b6cba0046e561dacfb7.tar.xz
discord.py-66ede7c5a09d5d8a6ace3b6cba0046e561dacfb7.zip
Fix search highlighting not working
Diffstat (limited to 'docs')
-rw-r--r--docs/_static/style.css9
-rw-r--r--docs/_templates/layout.html2
2 files changed, 10 insertions, 1 deletions
diff --git a/docs/_static/style.css b/docs/_static/style.css
index 7671da59..75a30378 100644
--- a/docs/_static/style.css
+++ b/docs/_static/style.css
@@ -104,6 +104,7 @@ Historically however, thanks to:
--attribute-table-entry-hover-background: var(--grey-2);
--attribute-table-entry-hover-text: var(--blue-2);
--attribute-table-badge: var(--grey-7);
+ --highlighted-text: rgb(252, 233, 103);
}
:root[data-font="serif"] {
@@ -163,6 +164,7 @@ Historically however, thanks to:
--attribute-table-entry-hover-background: var(--grey-6);
--attribute-table-entry-hover-text: var(--blue-1);
--attribute-table-badge: var(--grey-4);
+ --highlighted-text: rgba(252, 233, 103, 0.4);
}
img[src$="snake_dark.svg"] {
@@ -1014,6 +1016,13 @@ dd {
margin-left: 1.5em;
}
+dt:target, span.highlighted {
+ background-color: var(--highlighted-text);
+}
+
+rect.highlighted {
+ fill: var(--highlighted-text);
+}
.container.operations {
padding: 10px;
diff --git a/docs/_templates/layout.html b/docs/_templates/layout.html
index d4571f7c..946cb891 100644
--- a/docs/_templates/layout.html
+++ b/docs/_templates/layout.html
@@ -115,7 +115,7 @@
</div>
</aside>
{#- The actual body of the contents #}
- <main class="grid-item">
+ <main class="grid-item" role="main">
{% block body %} {% endblock %}
</main>
{%- block footer %}