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

Side by Side Diff: ui/webui/resources/cr_elements/cr_toolbar/cr_toolbar.html

Issue 2032313002: MD WebUI: Add loading spinner to cr-toolbar, hook into MD History toolbar (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Closure comments Created 4 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
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
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>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_history/history_toolbar.js ('k') | ui/webui/resources/cr_elements/cr_toolbar/cr_toolbar.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698