73bcce88
luigser
COMPONENTS
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!doctype html>
<!--
Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
-->
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">
<title>paper-toolbar demo</title>
<script src="../../webcomponentsjs/webcomponents-lite.js"></script>
<link rel="import" href="../../iron-icons/iron-icons.html">
<link rel="import" href="../../paper-icon-button/paper-icon-button.html">
<link rel="import" href="../paper-toolbar.html">
|
73bcce88
luigser
COMPONENTS
|
22
|
|
c5169e0e
Renato De Donato
a new hope
|
23
|
<style>
|
73bcce88
luigser
COMPONENTS
|
24
25
26
|
paper-toolbar + paper-toolbar {
margin-top: 20px;
}
|
73bcce88
luigser
COMPONENTS
|
27
28
29
30
31
32
33
34
35
36
37
38
|
</style>
</head>
<body unresolved>
<paper-toolbar>
<paper-icon-button icon="menu"></paper-icon-button>
<span class="title">Toolbar</span>
<paper-icon-button icon="refresh"></paper-icon-button>
<paper-icon-button icon="add">+</paper-icon-button>
</paper-toolbar>
|
73bcce88
luigser
COMPONENTS
|
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
<paper-toolbar class="tall">
<paper-icon-button icon="menu"></paper-icon-button>
<span class="title">Toolbar: tall</span>
<paper-icon-button icon="refresh"></paper-icon-button>
<paper-icon-button icon="add">+</paper-icon-button>
</paper-toolbar>
<paper-toolbar class="tall">
<paper-icon-button icon="menu" class="bottom"></paper-icon-button>
<span class="bottom title">Toolbar: tall with elements pin to the bottom</span>
<paper-icon-button icon="refresh" class="bottom"></paper-icon-button>
<paper-icon-button icon="add" class="bottom">+</paper-icon-button>
</paper-toolbar>
<paper-toolbar class="medium-tall">
<paper-icon-button icon="menu"></paper-icon-button>
|
c5169e0e
Renato De Donato
a new hope
|
55
|
<span class="flex"></span>
|
73bcce88
luigser
COMPONENTS
|
56
57
58
59
60
61
62
|
<paper-icon-button icon="refresh"></paper-icon-button>
<paper-icon-button icon="add">+</paper-icon-button>
<span class="bottom title">Toolbar: medium-tall with label aligns to the bottom</span>
</paper-toolbar>
<paper-toolbar class="tall">
<paper-icon-button icon="menu"></paper-icon-button>
|
c5169e0e
Renato De Donato
a new hope
|
63
|
<div class="flex"></div>
|
73bcce88
luigser
COMPONENTS
|
64
65
66
67
68
69
70
71
|
<paper-icon-button icon="refresh"></paper-icon-button>
<paper-icon-button icon="add">+</paper-icon-button>
<div class="middle title">label aligns to the middle</div>
<div class="bottom title">some stuffs align to the bottom</div>
</paper-toolbar>
<paper-toolbar class="tall">
<paper-icon-button icon="menu"></paper-icon-button>
|
c5169e0e
Renato De Donato
a new hope
|
72
|
<div class="flex"></div>
|
73bcce88
luigser
COMPONENTS
|
73
74
75
76
77
78
79
80
|
<paper-icon-button icon="refresh"></paper-icon-button>
<paper-icon-button icon="add">+</paper-icon-button>
<div class="middle title">element (e.g. progress) fits at the bottom of the toolbar</div>
<div class="bottom fit" style="height: 20px; background-color: #0f9d58;"></div>
</paper-toolbar>
</body>
</html>
|