mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
test(css): reorganize css tests for snapshots
This commit is contained in:
38
test/css/buttons-misc.html
Normal file
38
test/css/buttons-misc.html
Normal file
@@ -0,0 +1,38 @@
|
||||
<!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: Misc.</h1>
|
||||
</header>
|
||||
|
||||
<div class="content has-header">
|
||||
|
||||
<p>
|
||||
<a class="button disabled button-assertive" href="#">Disabled By ClassName</a>
|
||||
<a class="button button-assertive" disabled href="#">Disabled By Attribute</a>
|
||||
</p>
|
||||
|
||||
<hr>
|
||||
|
||||
<p>
|
||||
<input type="submit" class="button button-block button-positive" name="op" value="input element">
|
||||
<button class="button button-block button-positive">button element</button>
|
||||
<a class="button button-block button-positive">link element</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user