Skip to content

Focus styling, fixes #24 #29

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 26, 2011
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion base/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,12 @@
background: transparent; }

*:focus
{ outline: none; }
{ outline: 1px dotted #FFF; }

/* Darker focus border inside #body where the background is
white-ish: */
#body *:focus
{ outline: 1px dotted #666; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section
{ display: block; }
Expand Down
10 changes: 5 additions & 5 deletions themes/jquery/header.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,31 +72,31 @@
<div class="project-select">
<ul class="constrain">
<li>
<a href="http://jquery.com/" title="" class="">
<a href="http://jquery.com/" title="" class="" tabindex="-1">
<img src="<?php echo content_url(); ?>/base/i/logo-top-jquery.png" alt="jQuery" />
<em>The core JS framework that allows you to write less, do more.</em>
</a>
</li>
<li>
<a href="http://jqueryui.com/" title="" class="">
<a href="http://jqueryui.com/" title="" class="" tabindex="-1">
<img src="<?php echo content_url(); ?>/base/i/logo-top-ui.png" alt="jQuery UI" />
<em>The officially supported User Interface library for jQuery.</em>
</a>
</li>
<li>
<a href="http://jquerymobile.com/" title="" class="">
<a href="http://jquerymobile.com/" title="" class="" tabindex="-1">
<img src="<?php echo content_url(); ?>/base/i/logo-top-mobile.png" alt="jQuery Mobile">
<em>Build mobile web apps with jQuery using this framework.</em>
</a>
</li>
<li>
<a href="http://sizzlejs.com/" title="" class="">
<a href="http://sizzlejs.com/" title="" class="" tabindex="-1">
<img src="<?php echo content_url(); ?>/base/i/logo-top-sizzlejs.png" alt="SizzleJS" />
<em>A smoking fast CSS selector engine for JavaScript.</em>
</a>
</li>
<li>
<a href="http://qunitjs.com/" title="" class="">
<a href="http://qunitjs.com/" title="" class="" tabindex="-1">
<img src="<?php echo content_url(); ?>/base/i/logo-top-qunitjs.png" alt="QUnit" />
<em>Write solid JavaScript apps by unit testing with QUnit.</em>
</a>
Expand Down