OLD | NEW |
1 # paper-header-panel | 1 # paper-header-panel |
2 | 2 |
3 `paper-header-panel` contains a header section and a content panel section. | 3 `paper-header-panel` contains a header section and a content panel section. |
4 | 4 |
5 __Important:__ The `paper-header-panel` will not display if its parent does not
have a height. | 5 __Important:__ The `paper-header-panel` will not display if its parent does not
have a height. |
6 | 6 |
7 Using [layout classes](http://www.polymer-project.org/docs/polymer/layout-attrs.
html), you can make | 7 Using [layout classes](http://www.polymer-project.org/docs/polymer/layout-attrs.
html), you can make |
8 the `paper-header-panel` fill the screen | 8 the `paper-header-panel` fill the screen |
9 | 9 |
10 ```html | 10 ```html |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 | 96 |
97 --paper-header-panel-waterfall-container: { | 97 --paper-header-panel-waterfall-container: { |
98 border: 1px solid gray; | 98 border: 1px solid gray; |
99 }; | 99 }; |
100 | 100 |
101 --paper-header-panel-waterfall-tall-container: { | 101 --paper-header-panel-waterfall-tall-container: { |
102 border: 1px solid gray; | 102 border: 1px solid gray; |
103 }; | 103 }; |
104 } | 104 } |
105 ``` | 105 ``` |
OLD | NEW |