| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-media-query/iron-m
edia-query.html"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-media-query/iron-m
edia-query.html"> |
| 3 <link rel="import" href="chrome://resources/cr_elements/cr_toolbar/cr_toolbar_se
arch_field.html"> | 3 <link rel="import" href="chrome://resources/cr_elements/cr_toolbar/cr_toolbar_se
arch_field.html"> |
| 4 | 4 |
| 5 <dom-module id="cr-toolbar"> | 5 <dom-module id="cr-toolbar"> |
| 6 <template> | 6 <template> |
| 7 <style> | 7 <style> |
| 8 :host { | 8 :host { |
| 9 color: #fff; | 9 color: #fff; |
| 10 display: flex; | 10 display: flex; |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 display: none; | 39 display: none; |
| 40 } | 40 } |
| 41 </style> | 41 </style> |
| 42 <div id="leftContent"> | 42 <div id="leftContent"> |
| 43 <h1>[[pageName]]</h1> | 43 <h1>[[pageName]]</h1> |
| 44 </div> | 44 </div> |
| 45 | 45 |
| 46 <div id="centeredContent"> | 46 <div id="centeredContent"> |
| 47 <cr-toolbar-search-field id="search" narrow="[[narrow_]]" | 47 <cr-toolbar-search-field id="search" narrow="[[narrow_]]" |
| 48 label="[[searchPrompt]]" clear-label="[[clearLabel]]" | 48 label="[[searchPrompt]]" clear-label="[[clearLabel]]" |
| 49 spinner-active="[[spinnerActive]]" |
| 49 showing-search="{{showingSearch_}}"> | 50 showing-search="{{showingSearch_}}"> |
| 50 </cr-toolbar-search-field> | 51 </cr-toolbar-search-field> |
| 51 <iron-media-query query="(max-width: 900px)" query-matches="{{narrow_}}"> | 52 <iron-media-query query="(max-width: 900px)" query-matches="{{narrow_}}"> |
| 52 </iron-media-query> | 53 </iron-media-query> |
| 53 </div> | 54 </div> |
| 54 </template> | 55 </template> |
| 55 <script src="cr_toolbar.js"></script> | 56 <script src="cr_toolbar.js"></script> |
| 56 </dom-module> | 57 </dom-module> |
| OLD | NEW |