Fixed #34033 -- Improved accessibility of switch button for dark mode in the admin.
Bug in bc7aa2a5e9
.
Thanks Thibaud Colas for the report and review.
This commit is contained in:
parent
0f31d10c7c
commit
2c7c22f94d
|
@ -83,6 +83,26 @@ html[data-theme="dark"] {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Fully hide screen reader text so we only show the one matching the current
|
||||||
|
theme.
|
||||||
|
*/
|
||||||
|
.theme-toggle .visually-hidden {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
html[data-theme="auto"] .theme-toggle .theme-label-when-auto {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
html[data-theme="dark"] .theme-toggle .theme-label-when-dark {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
html[data-theme="light"] .theme-toggle .theme-label-when-light {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
/* ICONS */
|
/* ICONS */
|
||||||
.theme-toggle svg.theme-icon-when-auto,
|
.theme-toggle svg.theme-icon-when-auto,
|
||||||
.theme-toggle svg.theme-icon-when-dark,
|
.theme-toggle svg.theme-icon-when-dark,
|
||||||
|
|
|
@ -1,12 +1,15 @@
|
||||||
|
{% load i18n %}
|
||||||
<button class="theme-toggle">
|
<button class="theme-toggle">
|
||||||
<div class="visually-hidden">Toggle Light / Dark / Auto color theme</div>
|
<div class="visually-hidden theme-label-when-auto">{% translate 'Toggle theme (current theme: auto)' %}</div>
|
||||||
<svg class="theme-icon-when-auto">
|
<div class="visually-hidden theme-label-when-light">{% translate 'Toggle theme (current theme: light)' %}</div>
|
||||||
|
<div class="visually-hidden theme-label-when-dark">{% translate 'Toggle theme (current theme: dark)' %}</div>
|
||||||
|
<svg aria-hidden="true" class="theme-icon-when-auto">
|
||||||
<use xlink:href="#icon-auto" />
|
<use xlink:href="#icon-auto" />
|
||||||
</svg>
|
</svg>
|
||||||
<svg class="theme-icon-when-dark">
|
<svg aria-hidden="true" class="theme-icon-when-dark">
|
||||||
<use xlink:href="#icon-moon" />
|
<use xlink:href="#icon-moon" />
|
||||||
</svg>
|
</svg>
|
||||||
<svg class="theme-icon-when-light">
|
<svg aria-hidden="true" class="theme-icon-when-light">
|
||||||
<use xlink:href="#icon-sun" />
|
<use xlink:href="#icon-sun" />
|
||||||
</svg>
|
</svg>
|
||||||
</button>
|
</button>
|
||||||
|
|
Loading…
Reference in New Issue