diff options
| author | Patrick H. Lauke <[email protected]> | 2014-12-14 23:30:37 +0000 |
|---|---|---|
| committer | Patrick H. Lauke <[email protected]> | 2014-12-14 23:30:37 +0000 |
| commit | c187f77e65d177c3a0e662b99d5bff63ee47b3db (patch) | |
| tree | cc4910d9ccc81f23cfa585a4d94f6293b1931bdd /docs | |
| parent | f11a3a31f1382f212f9255671535d87060078355 (diff) | |
| parent | 2d41894ce51a1ae3b6e9d96eb63bf9cc3b50f64b (diff) | |
| download | bootstrap-c187f77e65d177c3a0e662b99d5bff63ee47b3db.tar.xz bootstrap-c187f77e65d177c3a0e662b99d5bff63ee47b3db.zip | |
Merge pull request #15363 from patrickhlauke/docs-nicer-skip-link
Make skip link look less "bare bones"
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/_includes/getting-started/accessibility.html | 5 | ||||
| -rw-r--r-- | docs/_layouts/default.html | 2 | ||||
| -rw-r--r-- | docs/_layouts/home.html | 2 | ||||
| -rw-r--r-- | docs/assets/css/src/docs.css | 20 |
4 files changed, 25 insertions, 4 deletions
diff --git a/docs/_includes/getting-started/accessibility.html b/docs/_includes/getting-started/accessibility.html index 37c19315c..cbb528dce 100644 --- a/docs/_includes/getting-started/accessibility.html +++ b/docs/_includes/getting-started/accessibility.html @@ -3,12 +3,13 @@ <p class="lead">Bootstrap follows common web standards and—with minimal extra effort—can be used to create sites that are accessible to those using <abbr title="Assistive Technology" class="initialism">AT</abbr>.</p> <h3>Skip navigation</h3> - <p>If your navigation contains many links and comes before the main content in the DOM, add a <code>Skip to main content</code> link immediately after your opening <code><body></code> tag. <a href="http://a11yproject.com/posts/skip-nav-links/">(read why)</a></p> + <p>If your navigation contains many links and comes before the main content in the DOM, add a <code>Skip to main content</code> link before the navigation <a href="http://a11yproject.com/posts/skip-nav-links/">(read why)</a>. Using the <code>.sr-only</code> class will visually hide the skip link, and the <code>.sr-only-focusable</code> class will ensure that the link becomes visible once focused (for sighted keyboard users).</p> {% highlight html %} <body> <a href="#content" class="sr-only sr-only-focusable">Skip to main content</a> + ... <div class="container" id="content"> - The main page content. + <!-- The main page content --> </div> </body> {% endhighlight %} diff --git a/docs/_layouts/default.html b/docs/_layouts/default.html index 51191dc5e..ea69962ee 100644 --- a/docs/_layouts/default.html +++ b/docs/_layouts/default.html @@ -5,7 +5,7 @@ {% include header.html %} </head> <body> - <a class="sr-only sr-only-focusable" href="#content">Skip to main content</a> + <a id="skippy" class="sr-only sr-only-focusable" href="#content"><div class="container"><span class="skiplink-text">Skip to main content</span></div></a> <!-- Docs master nav --> {% include nav/main.html %} diff --git a/docs/_layouts/home.html b/docs/_layouts/home.html index 9b1eee6ed..15a78adee 100644 --- a/docs/_layouts/home.html +++ b/docs/_layouts/home.html @@ -5,7 +5,7 @@ {% include header.html %} </head> <body class="bs-docs-home"> - <a class="sr-only sr-only-focusable" href="#content">Skip to main content</a> + <a id="skippy" class="sr-only sr-only-focusable" href="#content"><div class="container"><span class="skiplink-text">Skip to main content</span></div></a> <!-- Docs master nav --> {% include nav/main.html %} diff --git a/docs/assets/css/src/docs.css b/docs/assets/css/src/docs.css index 4cc1fa843..4f63b33cd 100644 --- a/docs/assets/css/src/docs.css +++ b/docs/assets/css/src/docs.css @@ -90,6 +90,26 @@ body { /* + * Fancy skip link + * + * Make it look a bit less "bare bones" + */ + +#skippy { + display: block; + padding: 1em; + color: #fff; + background-color: #6F5499; + outline: 0; +} + +#skippy .skiplink-text { + padding: 0.5em; + outline: 1px dotted; +} + + +/* * Main navigation * * Turn the `.navbar` at the top of the docs purple. |
