test(css): reorganize css tests for snapshots

This commit is contained in:
Adam Bradley
2014-06-05 15:12:44 -05:00
parent a49ecf35e6
commit bc48833925
68 changed files with 1531 additions and 3032 deletions

View File

@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Buttons</title>
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<link href="../../dist/css/ionic.css" rel="stylesheet">
<style>
.content {
height: 1000px;
}
</style>
</head>
<body>
<header class="bar bar-header bar-dark">
<h1 class="title">Buttons: &lt;button&gt; block clear w/ padding</h1>
</header>
<div class="content has-header padding">
<button class="button button-clear button-block"><i class="icon ion-home"></i> Default</button>
<button class="button button-light button-clear button-block">.button-light</button>
<button class="button button-stable button-clear button-block">.button-stable</button>
<button class="button button-positive button-clear button-block">.button-positive</button>
<button class="button button-calm button-clear button-block">.button-calm</button>
<button class="button button-balanced button-clear button-block">.button-balanced</button>
<button class="button button-assertive button-clear button-block">.button-assertive</button>
<button class="button button-energized button-clear button-block">.button-energized</button>
<button class="button button-royal button-clear button-block">.button-royal</button>
<button class="button button-dark button-clear button-block">.button-dark</button>
</div>
</body>
</html>