-
Notifications
You must be signed in to change notification settings - Fork 8
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 #78 from GSA/gh-pages-staging
[Release]: This is preparing for release 0.2.3
- Loading branch information
Showing
219 changed files
with
11,401 additions
and
2,328 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,3 +43,4 @@ dist/ | |
# !assets/css/prism.css | ||
# !assets/css/styleguide.scss | ||
# !assets/js/styleguide.js | ||
|
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
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 was deleted.
Oops, something went wrong.
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
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
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
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 |
---|---|---|
@@ -0,0 +1,49 @@ | ||
{% capture code_preview %} | ||
<h6>Borderless</h6> | ||
<div class="usa-accordion"> | ||
<ul class="usa-unstyled-list"> | ||
<li> | ||
<button class="usa-button-unstyled" aria-expanded="false" aria-controls="collapsible-1">Collapsed Accordion 1</button> | ||
<div id="collapsible-1" aria-hidden="true" class="usa-accordion-content"> | ||
<ol> | ||
<li>This</li> | ||
<li>accordion</li> | ||
<li>was</li> | ||
<li>collapsed</li> | ||
<li>initially.</li> | ||
</ol> | ||
</div> | ||
</li> | ||
<li> | ||
<button class="usa-button-unstyled" aria-expanded="true" aria-controls="collapsible-0">Expanded Accordion 1</button> | ||
<div id="collapsible-0" aria-hidden="false" class="usa-accordion-content"> | ||
<p>This accordion started expanded.</p> | ||
</div> | ||
</li> | ||
</ul> | ||
</div> | ||
|
||
<h6>Bordered</h6> | ||
<div class="usa-accordion-bordered"> | ||
<ul class="usa-unstyled-list"> | ||
<li> | ||
<button class="usa-button-unstyled" aria-expanded="false" aria-controls="collapsible-1">Collapsed Accordion 1</button> | ||
<div id="collapsible-1" aria-hidden="true" class="usa-accordion-content"> | ||
<ul> | ||
<li>This</li> | ||
<li>accordion</li> | ||
<li>was</li> | ||
<li>collapsed</li> | ||
<li>initially.</li> | ||
</ul> | ||
</div> | ||
</li> | ||
<li> | ||
<button class="usa-button-unstyled" aria-expanded="true" aria-controls="collapsible-0">Expanded Accordion 1</button> | ||
<div id="collapsible-0" aria-hidden="false" class="usa-accordion-content"> | ||
<p>This accordion started expanded.</p> | ||
</div> | ||
</li> | ||
</ul> | ||
</div> | ||
{% endcapture %} |
Oops, something went wrong.