Blame view

bower_components/paper-toolbar/demo/index.html 3.54 KB
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">
a1a3bc73   Luigi Serra   graphs updates
22
    <link rel="import" href="../../iron-flex-layout/iron-flex-layout.html">
73bcce88   luigser   COMPONENTS
23
  
a1a3bc73   Luigi Serra   graphs updates
24
    <style is="custom-style">
73bcce88   luigser   COMPONENTS
25
26
27
      paper-toolbar + paper-toolbar {
        margin-top: 20px;
      }
a1a3bc73   Luigi Serra   graphs updates
28
29
30
31
32
33
      paper-toolbar.red {
        --paper-toolbar-background: red;
      }
      .spacer {
        @apply(--layout-flex);
      }
73bcce88   luigser   COMPONENTS
34
35
36
37
38
39
40
41
42
43
44
45
    </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>
  
a1a3bc73   Luigi Serra   graphs updates
46
47
48
49
50
51
52
    <paper-toolbar class="red">
      <paper-icon-button icon="menu"></paper-icon-button>
      <span class="title">Toolbar: custom background color</span>
      <paper-icon-button icon="refresh"></paper-icon-button>
      <paper-icon-button icon="add">+</paper-icon-button>
    </paper-toolbar>
  
73bcce88   luigser   COMPONENTS
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
    <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>
a1a3bc73   Luigi Serra   graphs updates
69
      <span class="spacer"></span>
73bcce88   luigser   COMPONENTS
70
71
72
73
74
75
76
      <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>
a1a3bc73   Luigi Serra   graphs updates
77
      <div class="spacer"></div>
73bcce88   luigser   COMPONENTS
78
79
80
81
82
83
84
85
      <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>
a1a3bc73   Luigi Serra   graphs updates
86
      <div class="spacer"></div>
73bcce88   luigser   COMPONENTS
87
88
89
90
91
92
93
94
      <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>