aboutsummaryrefslogtreecommitdiff
path: root/catapult/third_party/polymer/components/paper-dropdown-menu/demo/index.html
blob: 4bb258e6c926fcabe3dadbf9497fb1a9ff58b226 (plain)
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
<!doctype html>
<!--
@license
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 http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">

  <title>paper-dropdown-menu demo</title>

  <script src="../../webcomponentsjs/webcomponents-lite.js"></script>

  <link rel="import" href="../../iron-demo-helpers/demo-snippet.html">
  <link rel="import" href="../../iron-demo-helpers/demo-pages-shared-styles.html">
  <link rel="import" href="../../paper-item/paper-item.html">
  <link rel="import" href="../../paper-listbox/paper-listbox.html">
  <link rel="import" href="../../paper-tabs/paper-tabs.html">
  <link rel="import" href="../paper-dropdown-menu.html">
  <link rel="import" href="../paper-dropdown-menu-light.html">

  <style is="custom-style" include="demo-pages-shared-styles">
    paper-tabs {
      width: 400px;
    }

    .vertical-section-container {
      max-width: 500px;
    }

    paper-dropdown-menu {
      width: 200px;
      margin-right: 20px;
    }
  </style>

</head>
<body unresolved>
  <div class="vertical-section-container centered">
    <h4>This is a plain paper-dropdown-menu</h4>
    <demo-snippet class="centered-demo">
      <template>
        <paper-dropdown-menu label="Dinosaurs">
          <paper-listbox class="dropdown-content">
            <paper-item>allosaurus</paper-item>
            <paper-item>brontosaurus</paper-item>
            <paper-item>carcharodontosaurus</paper-item>
            <paper-item>diplodocus</paper-item>
          </paper-listbox>
        </paper-dropdown-menu>

        <paper-dropdown-menu-light label="Dinosaurs (light)">
          <paper-listbox class="dropdown-content">
            <paper-item>allosaurus</paper-item>
            <paper-item>brontosaurus</paper-item>
            <paper-item>carcharodontosaurus</paper-item>
            <paper-item>diplodocus</paper-item>
          </paper-listbox>
        </paper-dropdown-menu-light>
      </template>
    </demo-snippet>

    <h4>You can pre-select a value using the <i>selected</i> attribute</h4>
    <demo-snippet class="centered-demo">
      <template>
        <paper-dropdown-menu label="Dinosaurs">
          <paper-listbox class="dropdown-content" selected="1">
            <paper-item>allosaurus</paper-item>
            <paper-item>brontosaurus</paper-item>
            <paper-item>carcharodontosaurus</paper-item>
            <paper-item>diplodocus</paper-item>
          </paper-listbox>
        </paper-dropdown-menu>

        <paper-dropdown-menu-light label="Dinosaurs (light)">
          <paper-listbox class="dropdown-content" selected="1">
            <paper-item>allosaurus</paper-item>
            <paper-item>brontosaurus</paper-item>
            <paper-item>carcharodontosaurus</paper-item>
            <paper-item>diplodocus</paper-item>
          </paper-listbox>
        </paper-dropdown-menu-light>
      </template>
    </demo-snippet>

    <h4>You can change the direction in which the menu opens</h4>
    <demo-snippet class="centered-demo">
      <template>
        <paper-dropdown-menu label="Upwards and to the left!" vertical-align="bottom" horizontal-align="left">
          <paper-listbox class="dropdown-content">
            <paper-item>allosaurus</paper-item>
            <paper-item>brontosaurus</paper-item>
            <paper-item>carcharodontosaurus</paper-item>
            <paper-item>diplodocus</paper-item>
          </paper-listbox>
        </paper-dropdown-menu>

        <paper-dropdown-menu-light label="Upwards and to the left! (light)" vertical-align="bottom" horizontal-align="left">
          <paper-listbox class="dropdown-content">
            <paper-item>allosaurus</paper-item>
            <paper-item>brontosaurus</paper-item>
            <paper-item>carcharodontosaurus</paper-item>
            <paper-item>diplodocus</paper-item>
          </paper-listbox>
        </paper-dropdown-menu-light>
      </template>
    </demo-snippet>


    <h4>A paper-dropdown-menu can be disabled</h4>
    <demo-snippet class="centered-demo">
      <template>
        <paper-dropdown-menu label="Disabled dinosaurs" disabled>
          <paper-listbox class="dropdown-content">
            <paper-item>allosaurus</paper-item>
            <paper-item>brontosaurus</paper-item>
            <paper-item>carcharodontosaurus</paper-item>
            <paper-item>diplodocus</paper-item>
          </paper-listbox>
        </paper-dropdown-menu>

        <paper-dropdown-menu-light label="Disabled dinosaurs (light)" disabled>
          <paper-listbox class="dropdown-content">
            <paper-item>allosaurus</paper-item>
            <paper-item>brontosaurus</paper-item>
            <paper-item>carcharodontosaurus</paper-item>
            <paper-item>diplodocus</paper-item>
          </paper-listbox>
        </paper-dropdown-menu-light>
      </template>
    </demo-snippet>

    <!-- TODO(noms): enable this demo when the webcomponentsjs bug is fixed -->
    <!-- <h4>Here is an example of a long, scrolling menu, using a <i>dom-repeat</i></h4>
    <demo-snippet class="centered-demo">
      <template>
        <template is="dom-bind" id="Demo">
          <paper-dropdown-menu label="Dinosaurs">
            <paper-listbox class="dropdown-content">
              <template is="dom-repeat" items='[[dinosaurs]]' as="dinosaur">
                <paper-item>[[dinosaur]]</paper-item>
              </template>
            </paper-listbox>
          </paper-dropdown-menu>
        </template>
      </template>
    </demo-snippet> -->

    <h4>A paper-dropdown-menu can contain any kind of content, such as tabs</h4>
    <demo-snippet class="centered-demo">
      <template>
        <paper-dropdown-menu label="Menu tabs!?">
          <paper-tabs class="dropdown-content">
            <paper-tab>cheddar</paper-tab>
            <paper-tab>stilton</paper-tab>
            <paper-tab>emmental</paper-tab>
          </paper-tabs>
        </paper-dropdown-menu>

        <paper-dropdown-menu-light label="Menu tabs!? (light)">
          <paper-tabs class="dropdown-content">
            <paper-tab>cheddar</paper-tab>
            <paper-tab>stilton</paper-tab>
            <paper-tab>emmental</paper-tab>
          </paper-tabs>
        </paper-dropdown-menu-light>
      </template>
    </demo-snippet>

    <h4>You can remove the ripple and the animations</h4>
    <demo-snippet class="centered-demo">
      <template>
        <paper-dropdown-menu label="Dinosaurs" noink no-animations>
          <paper-listbox class="dropdown-content">
            <paper-item>allosaurus</paper-item>
            <paper-item>brontosaurus</paper-item>
            <paper-item>carcharodontosaurus</paper-item>
            <paper-item>diplodocus</paper-item>
          </paper-listbox>
        </paper-dropdown-menu>

        <paper-dropdown-menu-light label="Dinosaurs (light)" noink no-animations>
          <paper-listbox class="dropdown-content">
            <paper-item>allosaurus</paper-item>
            <paper-item>brontosaurus</paper-item>
            <paper-item>carcharodontosaurus</paper-item>
            <paper-item>diplodocus</paper-item>
          </paper-listbox>
        </paper-dropdown-menu-light>
      </template>
    </demo-snippet>

    <h4>You can style a paper-dropdown-menu using custom properties</h4>
    <demo-snippet class="centered-demo">
      <template>
        <style is="custom-style">
          paper-dropdown-menu.custom {
            --paper-input-container-label: {
              color: var(--paper-pink-500);
              font-style: italic;
              text-align: center;
              font-weight: bold;
            };
            --paper-input-container-input: {
              color: var(--paper-indigo-500);
              font-style: normal;
              font-family: serif;
              text-transform: uppercase;
            }
            /* no underline */
            --paper-input-container-underline: {
              display: none;
            };
          }

          paper-dropdown-menu-light.custom {
            --paper-dropdown-menu-label: {
              color: var(--paper-pink-500);
              font-style: italic;
              text-align: center;
              font-weight: bold;
            };
            --paper-dropdown-menu-input: {
              color: var(--paper-indigo-500);
              font-style: normal;
              font-family: serif;
              text-transform: uppercase;
              /* no underline */
              border-bottom: none;
            }
          }
        </style>
        <paper-dropdown-menu class="custom" label="Custom" no-label-float>
          <paper-listbox class="dropdown-content">
            <paper-item>allosaurus</paper-item>
            <paper-item>brontosaurus</paper-item>
            <paper-item>carcharodontosaurus</paper-item>
            <paper-item>diplodocus</paper-item>
          </paper-listbox>
        </paper-dropdown-menu>

        <paper-dropdown-menu-light class="custom" label="Custom (light)" no-label-float>
          <paper-listbox class="dropdown-content">
            <paper-item>allosaurus</paper-item>
            <paper-item>brontosaurus</paper-item>
            <paper-item>carcharodontosaurus</paper-item>
            <paper-item>diplodocus</paper-item>
          </paper-listbox>
        </paper-dropdown-menu-light>
      </template>
    </demo-snippet>
  </div>

  <script>
  // document.addEventListener('WebComponentsReady', function() {
  //   Demo.dinosaurs = [
  //     'allosaurus',
  //     'brontosaurus',
  //     'carcharodontosaurus',
  //     'diplodocus',
  //     'ekrixinatosaurus',
  //     'fukuiraptor',
  //     'gallimimus',
  //     'hadrosaurus',
  //     'iguanodon',
  //     'jainosaurus',
  //     'kritosaurus',
  //     'liaoceratops',
  //     'megalosaurus',
  //     'nemegtosaurus',
  //     'ornithomimus',
  //     'protoceratops',
  //     'quetecsaurus',
  //     'rajasaurus',
  //     'stegosaurus',
  //     'triceratops',
  //     'utahraptor',
  //     'vulcanodon',
  //     'wannanosaurus',
  //     'xenoceratops',
  //     'yandusaurus',
  //     'zephyrosaurus'
  //   ];
  // });
  </script>
</body>
</html>