| 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) 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 16 matching lines...) Expand all  Loading... | 
|    27   <title>$i18n{title}</title> |    27   <title>$i18n{title}</title> | 
|    28   <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> |    28   <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> | 
|    29   <style> |    29   <style> | 
|    30 /* Copyright 2016 The Chromium Authors. All rights reserved. |    30 /* Copyright 2016 The Chromium Authors. All rights reserved. | 
|    31  * Use of this source code is governed by a BSD-style license that can be |    31  * Use of this source code is governed by a BSD-style license that can be | 
|    32  * found in the LICENSE file. */ |    32  * found in the LICENSE file. */ | 
|    33  |    33  | 
|    34 :root { |    34 :root { | 
|    35   /* This is a custom, Chrome-specific color that does not have a --paper or |    35   /* This is a custom, Chrome-specific color that does not have a --paper or | 
|    36    * --google equivalent. */ |    36    * --google equivalent. */ | 
|    37   --md-background-color: rgb(241, 241, 241); |    37   --md-background-color: #f1f1f1; | 
|    38   /* This is --google-blue-700, rewritten as a native custom property for speed. |    38   /* This is --google-blue-700, rewritten as a native custom property for speed. | 
|    39    */ |    39    */ | 
|    40   --md-toolbar-color: rgb(51, 103, 214); |    40   --md-toolbar-color: rgb(51, 103, 214); | 
 |    41   --md-loading-message-color: #6e6e6e; | 
|    41 } |    42 } | 
|    42  |    43  | 
|    43 </style> |    44 </style> | 
|    44   <style> |    45   <style> | 
|    45     html { |    46     html { | 
|    46       background: var(--md-background-color); |    47       background: var(--md-background-color); | 
|    47     } |    48     } | 
|    48  |    49  | 
|    49     html, |    50     html, | 
|    50     body { |    51     body { | 
| (...skipping 2970 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  3021  |  3022  | 
|  3022 :host(:not([narrow])) { |  3023 :host(:not([narrow])) { | 
|  3023   -webkit-padding-end: 0; |  3024   -webkit-padding-end: 0; | 
|  3024         background: rgba(0, 0, 0, 0.22); |  3025         background: rgba(0, 0, 0, 0.22); | 
|  3025         border-radius: 2px; |  3026         border-radius: 2px; | 
|  3026         cursor: text; |  3027         cursor: text; | 
|  3027         width: var(--cr-toolbar-field-width); |  3028         width: var(--cr-toolbar-field-width); | 
|  3028 } |  3029 } | 
|  3029  |  3030  | 
|  3030 :host(:not([narrow]):not([showing-search])) #icon, :host(:not([narrow])) #prompt
       { |  3031 :host(:not([narrow]):not([showing-search])) #icon, :host(:not([narrow])) #prompt
       { | 
|  3031   opacity: 0.6; |  3032   opacity: 0.7; | 
|  3032 } |  3033 } | 
|  3033  |  3034  | 
|  3034 :host([narrow]:not([showing-search])) #searchTerm { |  3035 :host([narrow]:not([showing-search])) #searchTerm { | 
|  3035   display: none; |  3036   display: none; | 
|  3036 } |  3037 } | 
|  3037  |  3038  | 
|  3038 :host([showing-search][spinner-active]) #icon { |  3039 :host([showing-search][spinner-active]) #icon { | 
|  3039   opacity: 0; |  3040   opacity: 0; | 
|  3040 } |  3041 } | 
|  3041  |  3042  | 
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  3289   </template> |  3290   </template> | 
|  3290   </dom-module> |  3291   </dom-module> | 
|  3291 <style> |  3292 <style> | 
|  3292 /* Copyright 2016 The Chromium Authors. All rights reserved. |  3293 /* Copyright 2016 The Chromium Authors. All rights reserved. | 
|  3293  * Use of this source code is governed by a BSD-style license that can be |  3294  * Use of this source code is governed by a BSD-style license that can be | 
|  3294  * found in the LICENSE file. */ |  3295  * found in the LICENSE file. */ | 
|  3295  |  3296  | 
|  3296 :root { |  3297 :root { | 
|  3297   /* This is a custom, Chrome-specific color that does not have a --paper or |  3298   /* This is a custom, Chrome-specific color that does not have a --paper or | 
|  3298    * --google equivalent. */ |  3299    * --google equivalent. */ | 
|  3299   --md-background-color: rgb(241, 241, 241); |  3300   --md-background-color: #f1f1f1; | 
|  3300   /* This is --google-blue-700, rewritten as a native custom property for speed. |  3301   /* This is --google-blue-700, rewritten as a native custom property for speed. | 
|  3301    */ |  3302    */ | 
|  3302   --md-toolbar-color: rgb(51, 103, 214); |  3303   --md-toolbar-color: rgb(51, 103, 214); | 
 |  3304   --md-loading-message-color: #6e6e6e; | 
|  3303 } |  3305 } | 
|  3304  |  3306  | 
|  3305 </style> |  3307 </style> | 
|  3306  |  3308  | 
|  3307 <dom-module id="downloads-manager" assetpath="chrome://downloads/" css-build="sh
      adow"> |  3309 <dom-module id="downloads-manager" assetpath="chrome://downloads/" css-build="sh
      adow"> | 
|  3308   <template> |  3310   <template> | 
|  3309     <style scope="downloads-manager">:host { |  3311     <style scope="downloads-manager">:host { | 
|  3310   display: flex; |  3312   display: flex; | 
|  3311         flex: 1 0; |  3313         flex: 1 0; | 
|  3312         flex-direction: column; |  3314         flex-direction: column; | 
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  3403   <command id="undo-command" shortcut="Meta|z"></command> |  3405   <command id="undo-command" shortcut="Meta|z"></command> | 
|  3404   <command id="find-command" shortcut="Meta|f"></command> |  3406   <command id="find-command" shortcut="Meta|f"></command> | 
|  3405 </if> |  3407 </if> | 
|  3406 <if expr="not is_macosx"> |  3408 <if expr="not is_macosx"> | 
|  3407   <command id="clear-all-command" shortcut="Alt|c"></command> |  3409   <command id="clear-all-command" shortcut="Alt|c"></command> | 
|  3408   <command id="undo-command" shortcut="Ctrl|z"></command> |  3410   <command id="undo-command" shortcut="Ctrl|z"></command> | 
|  3409   <command id="find-command" shortcut="Ctrl|f"></command> |  3411   <command id="find-command" shortcut="Ctrl|f"></command> | 
|  3410 </if> |  3412 </if> | 
|  3411   <link rel="import" href="chrome://resources/html/polymer.html"> |  3413   <link rel="import" href="chrome://resources/html/polymer.html"> | 
|  3412   <script src="crisper.js"></script></body></html> |  3414   <script src="crisper.js"></script></body></html> | 
| OLD | NEW |