-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #325 from nikolaswise/master
document thirdnac
- Loading branch information
Showing
4 changed files
with
10 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
Tertiary navigation is necessary only when the information architecture of the site requires three levels of hierarchy within pages. A breadcrumb component can also be used in this pattern. | ||
|
||
The third nav has a set of of Javascript bindings responsible for responsive behavior when the content of the third nav is greater than it's container. | ||
|
||
Only a single third nav can be on a page. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
<header class="third-nav"> | ||
<a href="#" class="icon-ui-left js-overflow-left nav-overflow-left"></a> | ||
<div class="grid-container"> | ||
<nav class="column-24" role="navigation" aria-labelledby="thirdnav"> | ||
<nav class="column-24 third-nav-container js-nav-overflow" role="navigation" aria-labelledby="thirdnav"> | ||
<a class="third-nav-link is-active" href="#">Alpine</a> | ||
<a class="third-nav-link" href="#">Coastal</a> | ||
<a class="third-nav-link" href="#">Wetland</a> | ||
<a class="third-nav-link" href="#">Grassland</a> | ||
<a class="third-nav-link" href="#">Praire</a> | ||
</nav> | ||
</div> | ||
</header> | ||
<a href="#" class="icon-ui-right js-overflow-right nav-overflow-right"></a> | ||
</header> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters