Skip to content

Commit

Permalink
adding tests for stacked icons inside anchors
Browse files Browse the repository at this point in the history
  • Loading branch information
davegandy committed Jun 14, 2013
1 parent 9c8f62a commit 254f30f
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 0 deletions.
65 changes: 65 additions & 0 deletions src/_includes/tests/stacked-inside-anchor.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
<p>
<a href="#">
<span class="icon-stack">
<i class="icon-sign-blank icon-stack-base"></i>
<i class="icon-twitter icon-light"></i>
</span>
Twitter Icon
</a>
<a href="#">
<span class="icon-stack">
<i class="icon-sign-blank icon-stack-base"></i>
<i class="icon-facebook icon-light"></i>
</span>
Facebook Icon
</a>
<a href="#">
<span class="icon-stack">
<i class="icon-sign-blank icon-stack-base"></i>
<i class="icon-github icon-light"></i>
</span>
GitHub Icon
</a>
</p>
<p>
<a href="#">
<span class="icon-stack">
<i class="icon-circle icon-stack-base"></i>
<i class="icon-twitter icon-light"></i>
</span>
Twitter Icon
</a>
<a href="#">
<span class="icon-stack">
<i class="icon-circle icon-stack-base"></i>
<i class="icon-facebook icon-light"></i>
</span>
Facebook Icon
</a>
<a href="#">
<span class="icon-stack">
<i class="icon-circle icon-stack-base"></i>
<i class="icon-github icon-light"></i>
</span>
GitHub Icon
</a>
</p>
<p>
<a href="#">
Twitter Icon
</a>
<a href="#">
<span class="icon-stack">
<i class="icon-circle-blank icon-stack-base"></i>
<i class="icon-facebook"></i>
</span>
Facebook Icon
</a>
<a href="#">
<span class="icon-stack">
<i class="icon-circle-blank icon-stack-base"></i>
<i class="icon-github"></i>
</span>
GitHub Icon
</a>
</p>
5 changes: 5 additions & 0 deletions src/test.html
Original file line number Diff line number Diff line change
Expand Up @@ -658,6 +658,11 @@ <h3>Stacked icons</h3>
<div class="well lead">
{% include tests/stacked.html %}
</div>
<h4>Stacked icons inside anchor</h4>
<div class="well">
{% include tests/stacked-inside-anchor.html %}
</div>


<h3>Mirrored and rotated icons</h3>
<div class="row">
Expand Down

0 comments on commit 254f30f

Please sign in to comment.