Fix theme toggle button label

Use pointer cursor when hovering over theme toggle button
This commit is contained in:
MG-5 2023-11-09 15:36:15 +01:00
parent 75698ff819
commit 6ac464f584
2 changed files with 6 additions and 1 deletions

View file

@ -37,7 +37,7 @@
{% if site.color_theme == 'auto' %}
<li class="separator"> | </li>
<li><a id="theme-toggle" title="{{ page.title }} " aria-label="{{ page.title }}" onclick="themeToggle()"></a></li>
<li><a id="theme-toggle" title="Theme wechseln" aria-label="Theme wechseln" onclick="themeToggle()"></a></li>
{% endif %}
<!-- Spacestatus -->
<li><a href="https://www.netz39.de/status/"><img alt="status" src="https://spaceapi.n39.eu/state.png" class="spacestatus"></a></li>

View file

@ -282,3 +282,8 @@ details {
}
}
// Theme toggle button
#theme-toggle {
cursor: pointer;
}