From efab0dbc47b14baa81992b7990f26fcd94cfdfb4 Mon Sep 17 00:00:00 2001 From: YuviPanda Date: Thu, 9 Mar 2017 10:35:28 -0800 Subject: [PATCH] Hide the logout icon from screen readers This makes the logout link more discoverable by screen readers, which sort links based on what they say. Since our icon was in front of and not behind 'Logout', someone looking for Logout will not find this --- share/jupyter/hub/templates/page.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/jupyter/hub/templates/page.html b/share/jupyter/hub/templates/page.html index 62794f7a..6ff05373 100644 --- a/share/jupyter/hub/templates/page.html +++ b/share/jupyter/hub/templates/page.html @@ -109,7 +109,7 @@ {% block login_widget %} {% if user %} - Logout + Logout {% else %} Login {% endif %}