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

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

Issue 2294613002: MD Downloads/History: Fix CSS selector that was mistakenly LTR-only (Closed)
Patch Set: 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 2332 matching lines...) Expand 10 before | Expand all | Expand 10 after
2343 2343
2344 /* Search open. */ 2344 /* Search open. */
2345 :host([showing-search][spinner-active]) #icon { 2345 :host([showing-search][spinner-active]) #icon {
2346 opacity: 0; 2346 opacity: 0;
2347 } 2347 }
2348 2348
2349 :host([narrow][showing-search]) { 2349 :host([narrow][showing-search]) {
2350 width: 100%; 2350 width: 100%;
2351 } 2351 }
2352 2352
2353 :host-context([dir=ltr]):host([narrow][showing-search]) #icon, 2353 :host([narrow][showing-search]) #icon,
2354 :host-context([dir=ltr]):host([narrow][showing-search]) 2354 :host([narrow][showing-search]) paper-spinner-lite {
2355 paper-spinner-lite {
2356 -webkit-margin-start: 18px; 2355 -webkit-margin-start: 18px;
2357 } 2356 }
2358 </style> 2357 </style>
2359 <paper-spinner-lite active="[[isSpinnerShown_(spinnerActive, showingSearch)] ]"> 2358 <paper-spinner-lite active="[[isSpinnerShown_(spinnerActive, showingSearch)] ]">
2360 </paper-spinner-lite> 2359 </paper-spinner-lite>
2361 <paper-icon-button id="icon" icon="cr:search" title="[[label]]" tabindex$="[ [computeIconTabIndex_(narrow)]]"> 2360 <paper-icon-button id="icon" icon="cr:search" title="[[label]]" tabindex$="[ [computeIconTabIndex_(narrow)]]">
2362 </paper-icon-button> 2361 </paper-icon-button>
2363 <paper-input-container id="searchTerm" on-search="onSearchTermSearch" on-key down="onSearchTermKeydown" no-label-float=""> 2362 <paper-input-container id="searchTerm" on-search="onSearchTermSearch" on-key down="onSearchTermKeydown" no-label-float="">
2364 <label id="prompt" for="searchInput">[[label]]</label> 2363 <label id="prompt" for="searchInput">[[label]]</label>
2365 <input is="iron-input" id="searchInput" type="search" on-blur="onInputBlur _" incremental=""> 2364 <input is="iron-input" id="searchInput" type="search" on-blur="onInputBlur _" incremental="">
(...skipping 1710 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=""> 4075 <history-side-bar id="drawer-side-bar" selected-page="[[selectedPage_]]" route="[[route_]]" show-footer="[[showSidebarFooter]]" drawer="">
4077 </history-side-bar> 4076 </history-side-bar>
4078 </app-drawer> 4077 </app-drawer>
4079 </template> 4078 </template>
4080 4079
4081 <iron-media-query query="(max-width: 1023px)" query-matches="{{hasDrawer_}}" > 4080 <iron-media-query query="(max-width: 1023px)" query-matches="{{hasDrawer_}}" >
4082 </iron-media-query> 4081 </iron-media-query>
4083 </template> 4082 </template>
4084 </dom-module> 4083 </dom-module>
4085 <script src="app.crisper.js"></script></body></html> 4084 <script src="app.crisper.js"></script></body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698