Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(892)

Side by Side Diff: polymer_1.0.4/bower_components/iron-overlay-behavior/demo/simple-overlay.html

Issue 1205703007: Add polymer 1.0 to npm_modules (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Renamed folder to 1.0.4 Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!--
2 @license
3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
4 This code may only be used under the BSD style license found at http://polymer.g ithub.io/LICENSE.txt
5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
6 The complete set of contributors may be found at http://polymer.github.io/CONTRI BUTORS.txt
7 Code distributed by Google as part of the polymer project is also
8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN TS.txt
9 -->
10
11 <link rel="import" href="../../polymer/polymer.html">
12
13 <link rel="import" href="../iron-overlay-behavior.html">
14
15 <dom-module id="simple-overlay">
16
17 <style>
18
19 :host {
20 background: white;
21 color: black;
22 padding: 24px;
23 box-shadow: rgba(0, 0, 0, 0.24) -2.3408942051048403px 5.524510324047423px 12.090680100755666px 0px, rgba(0, 0, 0, 0.12) 0px 0px 12px 0px;
24 }
25
26 </style>
27
28 <template>
29 <content></content>
30 </template>
31
32 </dom-module>
33
34 <script>
35
36 (function() {
37
38 Polymer({
39
40 is: 'simple-overlay',
41
42 behaviors: [
43 Polymer.IronOverlayBehavior
44 ]
45
46 });
47
48 })();
49
50 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698