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
9 `core-header-panel` contains a header section and a content panel section.
11 __Important:__ The `core-header-panel` will not display if its parent does not have a height.
13 Using [layout attributes](http://www.polymer-project.org/docs/polymer/layout-attrs.html), you can easily make the `core-header-panel` fill the screen
15 <body fullbleed layout vertical>
16 <core-header-panel flex>
18 <div>Hello World!</div>
23 or, if you would prefer to do it in CSS, just give `html`, `body`, and `core-header-panel` a height of 100%:
33 Special support is provided for scrolling modes when one uses a core-toolbar or equivalent
34 for the header section.
39 <core-toolbar>Header</core-toolbar>
40 <div>Content goes here...</div>
43 If you want to use other than `core-toolbar` for the header, add
44 `core-header` class to that element.
49 <div class="core-header">Header</div>
50 <div>Content goes here...</div>
53 To have the content fits to the main area, use `fit` attribute.
56 <div class="core-header">standard</div>
57 <div class="content" fit>content fits 100% below the header</div>
60 Use `mode` to control the header and scrolling behavior.
62 @group Polymer Core Elements
63 @element core-header-panel
65 --><html><head><link rel=
"import" href=
"../polymer/polymer.html">
67 </head><body><polymer-element name=
"core-header-panel" assetpath=
"">
70 <link rel=
"stylesheet" href=
"core-header-panel.css">
72 <div id=
"outerContainer" vertical=
"" layout=
"">
74 <content id=
"headerContent" select=
"core-toolbar, .core-header"></content>
76 <div id=
"mainPanel" flex=
"" vertical=
"" layout=
"">
78 <div id=
"mainContainer" flex?=
"{{mode !== 'cover'}}">
79 <content id=
"mainContent" select=
"*"></content>
82 <div id=
"dropShadow"></div>
91 <script charset=
"utf-8" src=
"core-header-panel-extracted.js"></script></body></html>