mirror of
https://github.com/fly-apps/live_beats.git
synced 2024-11-21 15:41:00 +00:00
Remove aria-hidden
on icons in favor of empty alt text.
This matches better with adding alt text to images, which is probably better than either manually opting out of the accessibility tree or creating some less-compatible implementation.
This commit is contained in:
parent
fad37064db
commit
72501c90b4
4 changed files with 8 additions and 7 deletions
|
@ -96,6 +96,7 @@ defmodule LiveBeatsWeb.LiveHelpers do
|
|||
assigns
|
||||
|> assign_new(:outlined, fn -> false end)
|
||||
|> assign_new(:class, fn -> "w-4 h-4 inline-block" end)
|
||||
|> assign_new(:alt, fn -> "" end)
|
||||
|
||||
~H"""
|
||||
<%= if @outlined do %>
|
||||
|
|
|
@ -41,7 +41,7 @@ defmodule LiveBeatsWeb.PlayerLive do
|
|||
redirect_to={profile_path(@profile)}
|
||||
class="mx-auto flex outline border-2 border-white border-opacity-20 rounded-md p-1 pr-2"
|
||||
>
|
||||
<span class="mt-1"><.icon name={:user_circle} aria-hidden="true"/></span>
|
||||
<span class="mt-1"><.icon name={:user_circle}/></span>
|
||||
<p class="ml-2"><%= @profile.username %></p>
|
||||
</.link>
|
||||
<% else %>
|
||||
|
|
|
@ -13,7 +13,7 @@ defmodule LiveBeatsWeb.SongLive.Index do
|
|||
<%= @profile.tagline %> <%= if @owns_profile? do %>(you)<% end %>
|
||||
</div>
|
||||
<.link href={@profile.external_homepage_url} _target="blank" class="block text-sm text-gray-600">
|
||||
<.icon name={:code} aria-hidden="true"/> <span class=""><%= url_text(@profile.external_homepage_url) %></span>
|
||||
<.icon name={:code}/> <span class=""><%= url_text(@profile.external_homepage_url) %></span>
|
||||
</.link>
|
||||
</div>
|
||||
|
||||
|
@ -22,18 +22,18 @@ defmodule LiveBeatsWeb.SongLive.Index do
|
|||
<.button primary
|
||||
phx-click={JS.push("switch_profile", value: %{user_id: nil}, target: "#player", loading: "#player")}
|
||||
>
|
||||
<.icon name={:stop} aria-hidden="true"/><span class="ml-2">Stop Listening</span>
|
||||
<.icon name={:stop}/><span class="ml-2">Stop Listening</span>
|
||||
</.button>
|
||||
<% else %>
|
||||
<.button primary
|
||||
phx-click={JS.push("switch_profile", value: %{user_id: @profile.user_id}, target: "#player", loading: "#player")}
|
||||
>
|
||||
<.icon name={:play} aria-hidden="true"/><span class="ml-2">Listen</span>
|
||||
<.icon name={:play}/><span class="ml-2">Listen</span>
|
||||
</.button>
|
||||
<% end %>
|
||||
<%= if @owns_profile? do %>
|
||||
<.button primary patch_to={Routes.song_index_path(@socket, :new)}>
|
||||
<.icon name={:upload} aria-hidden="true"/><span class="ml-2">Upload Songs</span>
|
||||
<.icon name={:upload}/><span class="ml-2">Upload Songs</span>
|
||||
</.button>
|
||||
<% end %>
|
||||
</:actions>
|
||||
|
|
|
@ -35,7 +35,7 @@ defmodule LiveBeatsWeb.LayoutView do
|
|||
redirect_to={profile_path(@current_user)}
|
||||
class="text-gray-700 hover:text-gray-900 hover:bg-gray-50 group flex items-center px-2 py-2 text-sm font-medium rounded-md"
|
||||
>
|
||||
<.icon name={:music_note} outlined class="text-gray-400 group-hover:text-gray-500 mr-3 flex-shrink-0 h-6 w-6" aria-hidden="true"/>
|
||||
<.icon name={:music_note} outlined class="text-gray-400 group-hover:text-gray-500 mr-3 flex-shrink-0 h-6 w-6"/>
|
||||
My Songs
|
||||
</.link>
|
||||
|
||||
|
@ -43,7 +43,7 @@ defmodule LiveBeatsWeb.LayoutView do
|
|||
redirect_to={Routes.settings_path(LiveBeatsWeb.Endpoint, :edit)}
|
||||
class="text-gray-700 hover:text-gray-900 hover:bg-gray-50 group flex items-center px-2 py-2 text-sm font-medium rounded-md"
|
||||
>
|
||||
<.icon name={:adjustments} outlined class="text-gray-400 group-hover:text-gray-500 mr-3 flex-shrink-0 h-6 w-6" aria-hidden="true"/>
|
||||
<.icon name={:adjustments} outlined class="text-gray-400 group-hover:text-gray-500 mr-3 flex-shrink-0 h-6 w-6"/>
|
||||
Settings
|
||||
</.link>
|
||||
<% else %>
|
||||
|
|
Loading…
Reference in a new issue