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

Side by Side Diff: chrome/browser/resources/md_history/app.vulcanized.html

Issue 2294563002: MD WebUI (History, Settings, Downloads): autofocus big search box (Closed)
Patch Set: vulcanize Created 4 years, 3 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 <html><head><!-- 1 <html><head><!--
2 @license 2 @license
3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. 3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
4 This code may only be used under the BSD style license found at http://polymer.g ithub.io/LICENSE.txt 4 This code may only be used under the BSD style license found at http://polymer.g ithub.io/LICENSE.txt
5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
6 The complete set of contributors may be found at http://polymer.github.io/CONTRI BUTORS.txt 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI BUTORS.txt
7 Code distributed by Google as part of the polymer project is also 7 Code distributed by Google as part of the polymer project is also
8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN TS.txt 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN TS.txt
9 --><!-- 9 --><!--
10 @license 10 @license
(...skipping 2344 matching lines...) Expand 10 before | Expand all | Expand 10 after
2355 paper-spinner-lite { 2355 paper-spinner-lite {
2356 -webkit-margin-start: 18px; 2356 -webkit-margin-start: 18px;
2357 } 2357 }
2358 </style> 2358 </style>
2359 <paper-spinner-lite active="[[isSpinnerShown_(spinnerActive, showingSearch)] ]"> 2359 <paper-spinner-lite active="[[isSpinnerShown_(spinnerActive, showingSearch)] ]">
2360 </paper-spinner-lite> 2360 </paper-spinner-lite>
2361 <paper-icon-button id="icon" icon="cr:search" title="[[label]]" tabindex$="[ [computeIconTabIndex_(narrow)]]"> 2361 <paper-icon-button id="icon" icon="cr:search" title="[[label]]" tabindex$="[ [computeIconTabIndex_(narrow)]]">
2362 </paper-icon-button> 2362 </paper-icon-button>
2363 <paper-input-container id="searchTerm" on-search="onSearchTermSearch" on-key down="onSearchTermKeydown" no-label-float=""> 2363 <paper-input-container id="searchTerm" on-search="onSearchTermSearch" on-key down="onSearchTermKeydown" no-label-float="">
2364 <label id="prompt" for="searchInput">[[label]]</label> 2364 <label id="prompt" for="searchInput">[[label]]</label>
2365 <input is="iron-input" id="searchInput" type="search" on-blur="onInputBlur _" incremental=""> 2365 <input is="iron-input" id="searchInput" type="search" on-blur="onInputBlur _" incremental="" autofocus="">
2366 </paper-input-container> 2366 </paper-input-container>
2367 <paper-icon-button icon="cr:cancel" id="clearSearch" title="[[clearLabel]]" hidden$="[[!hasSearchText_]]" on-tap="hideSearch_"> 2367 <paper-icon-button icon="cr:cancel" id="clearSearch" title="[[clearLabel]]" hidden$="[[!hasSearchText_]]" on-tap="hideSearch_">
2368 </paper-icon-button> 2368 </paper-icon-button>
2369 </template> 2369 </template>
2370 </dom-module> 2370 </dom-module>
2371 <dom-module id="cr-toolbar" assetpath="chrome://resources/cr_elements/cr_toolbar /"> 2371 <dom-module id="cr-toolbar" assetpath="chrome://resources/cr_elements/cr_toolbar /">
2372 <template> 2372 <template>
2373 <style> 2373 <style>
2374 :host { 2374 :host {
2375 --cr-toolbar-field-width: 580px; 2375 --cr-toolbar-field-width: 580px;
(...skipping 1700 matching lines...) Expand 10 before | Expand all | Expand 10 after
4076 <history-side-bar id="drawer-side-bar" selected-page="[[selectedPage_]]" route="[[route_]]" show-footer="[[showSidebarFooter]]" drawer=""> 4076 <history-side-bar id="drawer-side-bar" selected-page="[[selectedPage_]]" route="[[route_]]" show-footer="[[showSidebarFooter]]" drawer="">
4077 </history-side-bar> 4077 </history-side-bar>
4078 </app-drawer> 4078 </app-drawer>
4079 </template> 4079 </template>
4080 4080
4081 <iron-media-query query="(max-width: 1023px)" query-matches="{{hasDrawer_}}" > 4081 <iron-media-query query="(max-width: 1023px)" query-matches="{{hasDrawer_}}" >
4082 </iron-media-query> 4082 </iron-media-query>
4083 </template> 4083 </template>
4084 </dom-module> 4084 </dom-module>
4085 <script src="app.crisper.js"></script></body></html> 4085 <script src="app.crisper.js"></script></body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698