-
Notifications
You must be signed in to change notification settings - Fork 577
/
Copy pathbars-actions.html
64 lines (56 loc) · 1.92 KB
/
bars-actions.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Bars example</title>
<!-- Photon.css -->
<link rel="stylesheet" href="/dist/css/photon.css">
<!-- Photon-theme-osx.css -->
<link rel="stylesheet" href="/dist/css/photon-theme-osx.css">
</head>
<body>
<div class="window">
<header class="toolbar toolbar-header">
<h1 class="title">Header with actions</h1>
<div class="toolbar-actions">
<div class="btn-group">
<button class="btn btn-default" type="button">
<span class="icon icon-home"></span>
</button>
<button class="btn btn-default" type="button">
<span class="icon icon-folder"></span>
</button>
<button class="btn btn-default active" type="button">
<span class="icon icon-cloud"></span>
</button>
<button class="btn btn-default" type="button">
<span class="icon icon-popup"></span>
</button>
<button class="btn btn-default" type="button">
<span class="icon icon-shuffle"></span>
</button>
</div>
<button class="btn btn-default" type="button">
<span class="icon icon-home icon-text"></span>
Filters
</button>
<button class="btn btn-default btn-dropdown pull-right" type="button">
<span class="icon icon-megaphone"></span>
</button>
</div>
</header>
<div class="window-content"></div>
<footer class="toolbar toolbar-footer">
<div class="toolbar-actions">
<button class="btn btn-default" type="button">
Cancel
</button>
<button class="btn btn-primary pull-right" type="button">
Save
</button>
</div>
</footer>
</div>
</body>
</html>