Merge pull request #90 from netz39/improve-theme-toggle-button

Fix theme toggle button label
This commit is contained in:
David 2023-11-09 19:56:27 +01:00 committed by GitHub
commit e5cfc5bfac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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;
}