# HG changeset patch # User bsw # Date 1342734948 -7200 # Node ID ab827375de6550e722de4d66086f149f3bc826a6 # Parent 92fffd09deee5c77d16c8e4e55b2d5b3a6f90659 Make :focus on elements visible diff -r 92fffd09deee -r ab827375de65 config/example.lua --- a/config/example.lua Fri Jul 13 22:55:43 2012 +0200 +++ b/config/example.lua Thu Jul 19 23:55:48 2012 +0200 @@ -121,7 +121,7 @@ -- Display a public message of the day -- ------------------------------------------------------------------------ -config.motd_public = "===Message of the day===\nThe MOTD is formatted with rocket wiki" +-- config.motd_public = "===Message of the day===\nThe MOTD is formatted with rocket wiki" -- Automatic issue related discussion URL -- ------------------------------------------------------------------------ diff -r 92fffd09deee -r ab827375de65 static/style.css --- a/static/style.css Fri Jul 13 22:55:43 2012 +0200 +++ b/static/style.css Thu Jul 19 23:55:48 2012 +0200 @@ -44,7 +44,9 @@ text-align: left; font-weight: normal; } - +a:focus { + outline: 1px solid #f90; +} /************************************************************************* * Some global definitions */ @@ -186,7 +188,9 @@ } .topbar a:hover, -.topbar a:hover .logo_liquidfeedback { +.topbar a:hover .logo_liquidfeedback, +.topbar a:focus, +.topbar a:focus .logo_liquidfeedback { color: #f90; } @@ -505,7 +509,8 @@ color: #aaa; } -a.delegation_info:hover { +a.delegation_info:hover, +a.delegation_info:focus { background-color: #ddd; } @@ -578,6 +583,7 @@ } .ui_tabs_links a:hover, +.ui_tabs_links a:focus, .ui_tabs_links a.selected { margin: 0; margin-right: 2px; @@ -793,7 +799,9 @@ } .login input[type=submit]:hover, -.vertical input[type=submit]:hover { +.vertical input[type=submit]:hover, +.login input[type=submit]:focus, +.vertical input[type=submit]:focus { background-color: #444444; }