added a bit of aria-hidden to icons where I made tabindex=-1 need to add labels though to avoid issues
This commit is contained in:
parent
58b917aaa7
commit
0e7b85ae56
1 changed files with 6 additions and 4 deletions
|
@ -24,12 +24,14 @@
|
||||||
<body>
|
<body>
|
||||||
<!-- originally handled dark v light via js but decided it would be better to just do it all in css and have no toggle 8a7917a0cd34bd7637d9a9a8ad327e4b847cdeed is the last commit where I had the system setup -->
|
<!-- originally handled dark v light via js but decided it would be better to just do it all in css and have no toggle 8a7917a0cd34bd7637d9a9a8ad327e4b847cdeed is the last commit where I had the system setup -->
|
||||||
<header id="header">
|
<header id="header">
|
||||||
<a class="" rel="prefetch" href="/"><object tabindex="-1" class="icon svg" data="/static/images/house.svg">
|
<a class="" rel="prefetch" href="/"><object aria-hidden="true" tabindex="-1" class="icon svg"
|
||||||
<a href="/" class="nav-link" tabindex="-1">home</a>
|
data="/static/images/house.svg">
|
||||||
|
<a href="/" class="nav-link" aria-hidden="true" tabindex="-1">home</a>
|
||||||
</object></a>
|
</object></a>
|
||||||
<div class="back-shover"></div>
|
<div class="back-shover"></div>
|
||||||
<a class="" href="/index.xml"> <object tabindex="-1" class="icon svg" data="/static/images/rss.svg">
|
<a class="" href="/index.xml"> <object aria-hidden="true" tabindex="-1" class="icon svg"
|
||||||
<a href="/index.xml" class="nav-link" tabindex="-1">web feed</a>
|
data="/static/images/rss.svg">
|
||||||
|
<a href="/index.xml" class="nav-link" aria-hidden="true" tabindex="-1">web feed</a>
|
||||||
</object>
|
</object>
|
||||||
</a>
|
</a>
|
||||||
</header>
|
</header>
|
||||||
|
|
Loading…
Reference in a new issue