forked from ionic-team/ionic-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlists-buttons.html
More file actions
116 lines (101 loc) · 3.59 KB
/
lists-buttons.html
File metadata and controls
116 lines (101 loc) · 3.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html ng-app="ionic">
<head>
<script src="../../dist/js/ionic.bundle.js"></script>
<meta charset="utf-8">
<title>Lists</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>
body {
position: absolute;;
}
</style>
</head>
<body class="ionic-pseudo">
<header class="bar bar-header bar-dark">
<h1 class="title">Lists</h1>
</header>
<div class="content has-header">
<div class="list">
<div class="item item-icon-left item-button-right">
<i class="icon ion-chatbubble-working ion-primary"></i>
Left Icon and Right Button
<button class="button button-positive">
<i class="icon ion-ios7-telephone"></i>
</button>
</div>
<div class="item item-button-right">
Right Button
<button class="button button-positive">
<i class="icon ion-ios7-telephone"></i>
</button>
</div>
<div class="item item-button-right">
Right Button Text
<button class="button button-positive">
<i class="icon ion-ios7-telephone"></i> Text
</button>
</div>
<div class="item item-icon-left item-button-right">
<i class="icon ion-chatbubble-working ion-primary"></i>
Call Ma
<div class="buttons">
<button class="button button-positive">
<i class="icon ion-ios7-telephone"></i>
</button>
<button class="button button-balanced">
<i class="icon ion-ios7-camera"></i>
</button>
</div>
</div>
<div class="item item-button-left">
<button class="button button-positive">
<i class="icon ion-ios7-telephone"></i>
</button>
Me Button
</div>
<div class="item item-input-inset">
<label class="item-input-wrapper">
<i class="icon ion-search placeholder-icon"></i>
<input type="search" placeholder="Search">
</label>
<button class="button button-clear">
Cancel
</button>
</div>
<div class="item item-input-inset">
<label class="item-input-wrapper">
<input type="text" placeholder="Email">
</label>
<button class="button button-positive icon ion-arrow-right-c">
Submit
</button>
</div>
<div class="item item-input-inset">
<label class="item-input-wrapper">
<input type="text" placeholder="Email">
</label>
<button class="button button-small button-positive icon ion-arrow-right-c">
Submit
</button>
<button class="button button-small button-positive icon ion-arrow-right-c">
Cancel
</button>
<button class="button button-small button-positive icon ion-arrow-right-c">
Cancel
</button>
</div>
<div class="item item-button-right">
Badge with right button: Friends asdfasdf asdfasd fasdfasdf asdf asdfasd fasdf asdf asd
asdfasdfasdf asdfasdfasdf asdf asdf asdfasdfasd fasdfa sdfasdf asdf asdf
asdfa sdf asdfasdfa sdf asdf asdfasdfasdf asdf asdf asdf
<span class="badge badge-royal">999</span>
<button class="button button-calm">
<i class="icon ion-ios7-telephone"></i>
</button>
</div>
</div>
</div>
</body>
</html>