| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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> |
| OLD | NEW |