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

Side by Side Diff: chrome/browser/resources/md_downloads/vulcanized.html

Issue 1952123002: MD Downloads: fix unvulcanized build by adding <style no-process> (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: and vulcanize Created 4 years, 7 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 <!DOCTYPE html><html dir="$i18n{textdirection}" lang="$i18n{language}"><head><!- - 1 <!DOCTYPE html><html dir="$i18n{textdirection}" lang="$i18n{language}"><head><!- -
2 @license 2 @license
3 Copyright (c) 2016 The Polymer Project Authors. All rights reserved. 3 Copyright (c) 2016 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 2972 matching lines...) Expand 10 before | Expand all | Expand 10 after
2983 * found in the LICENSE file. */ 2983 * found in the LICENSE file. */
2984 2984
2985 :root { 2985 :root {
2986 /* These are custom, Chrome-specific colors that don't have --paper or 2986 /* These are custom, Chrome-specific colors that don't have --paper or
2987 * --google equivalents. Blame bettes@. http://crbug.com/598451 */ 2987 * --google equivalents. Blame bettes@. http://crbug.com/598451 */
2988 --md-background-color: rgb(236, 239, 241); 2988 --md-background-color: rgb(236, 239, 241);
2989 --md-toolbar-color: rgb(52, 73, 94); 2989 --md-toolbar-color: rgb(52, 73, 94);
2990 } 2990 }
2991 2991
2992 </style> 2992 </style>
2993 <style> 2993 <style no-process="">
2994 #toolbar { 2994 #toolbar {
2995 background: var(--md-toolbar-color); 2995 background: var(--md-toolbar-color);
2996 } 2996 }
2997 </style> 2997 </style>
2998 <downloads-toolbar id="toolbar"></downloads-toolbar> 2998 <downloads-toolbar id="toolbar"></downloads-toolbar>
2999 <iron-list id="downloads-list" items="{{items_}}" hidden="[[!hasDownloads_]] "> 2999 <iron-list id="downloads-list" items="{{items_}}" hidden="[[!hasDownloads_]] ">
3000 <template> 3000 <template>
3001 <downloads-item data="[[item]]" hide-date="[[item.hideDate]]"> 3001 <downloads-item data="[[item]]" hide-date="[[item.hideDate]]">
3002 </downloads-item> 3002 </downloads-item>
3003 </template> 3003 </template>
(...skipping 14 matching lines...) Expand all
3018 <if expr="is_macosx"> 3018 <if expr="is_macosx">
3019 <command id="undo-command" shortcut="Meta-U+005A"></command> 3019 <command id="undo-command" shortcut="Meta-U+005A"></command>
3020 <command id="find-command" shortcut="Meta-U+0046"></command> 3020 <command id="find-command" shortcut="Meta-U+0046"></command>
3021 </if> 3021 </if>
3022 <if expr="not is_macosx"> 3022 <if expr="not is_macosx">
3023 <command id="undo-command" shortcut="Ctrl-U+005A"></command> 3023 <command id="undo-command" shortcut="Ctrl-U+005A"></command>
3024 <command id="find-command" shortcut="Ctrl-U+0046"></command> 3024 <command id="find-command" shortcut="Ctrl-U+0046"></command>
3025 </if> 3025 </if>
3026 <link rel="import" href="chrome://resources/html/polymer.html"> 3026 <link rel="import" href="chrome://resources/html/polymer.html">
3027 <script src="crisper.js"></script></body></html> 3027 <script src="crisper.js"></script></body></html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_downloads/manager.html ('k') | third_party/polymer/v1_0/chromium.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698