Home | History | Annotate | Download | only in core-overlay
      1 <!--
      2 Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
      3 This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
      4 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
      5 The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
      6 Code distributed by Google as part of the polymer project is also
      7 subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
      8 -->
      9 
     10 <polymer-element name="core-overlay-layer" assetpath="">
     11 <template>
     12   <style>
     13     :host {
     14       position: fixed;
     15       top: 0;
     16       left: 0;
     17       z-index: 1000;
     18       display: none;
     19     }
     20 
     21     :host(.core-opened) {
     22       display: block;
     23     }
     24   </style>
     25   <content></content>
     26 </template>
     27 
     28 </polymer-element>
     29 <script src="core-overlay-layer-extracted.js"></script>