OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <html i18n-values="dir:textdirection;lang:language"> | 2 <html i18n-values="dir:textdirection;lang:language"> |
3 <head> | 3 <head> |
4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
5 <title i18n-content="title"></title> | 5 <title i18n-content="title"></title> |
6 | |
7 <link rel="import" href="chrome://resources/html/action_link.html"> | |
8 <link rel="import" href="chrome://resources/html/polymer_config.html"> | 6 <link rel="import" href="chrome://resources/html/polymer_config.html"> |
9 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"
> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"
> |
10 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/clas
ses/iron-flex-layout.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/clas
ses/iron-flex-layout.html"> |
11 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons
.html"> | |
12 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/pap
er-icon-button.html"> | |
13 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-inp
ut.html"> | |
14 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toolbar/paper-t
oolbar.html"> | |
15 | |
16 <link rel="import" href="chrome://downloads/manager.html"> | 9 <link rel="import" href="chrome://downloads/manager.html"> |
17 | |
18 <link rel="stylesheet" href="chrome://resources/css/roboto.css"> | |
19 <link rel="stylesheet" href="chrome://downloads/downloads.css"> | |
20 </head> | 10 </head> |
21 <body class="fullbleed"> | 11 <body class="fullbleed"> |
22 | 12 <downloads-manager></downloads-manager> |
23 <paper-toolbar id="downloads-toolbar"> | |
24 <h1 class="flex-auto" i18n-content="title"></h1> | |
25 <paper-icon-button icon="search" id="search-button"></paper-icon-button> | |
26 <paper-input id="search-term" class="flex-none" | |
27 i18n-values="label:searchButton" no-label-float hidden></paper-input> | |
28 <paper-icon-button icon="clear" id="clear-search" | |
29 hidden></paper-icon-button> | |
30 </paper-toolbar> | |
31 | |
32 <div class="main"> | |
33 <div class="summary" id="downloads-summary"> | |
34 <span id="downloads-summary-text"></span> | |
35 <span id="downloads-actions"> | |
36 <a is="action-link" id="open-downloads-folder" | |
37 i18n-content="openDownloadsFolder"></a> | |
38 <a is="action-link" id="clear-all" i18n-content="clearAll" hidden></a> | |
39 </span> | |
40 </div> | |
41 <div id="downloads-display"></div> | |
42 <div id="no-downloads-or-results"></div> | |
43 </div> | |
44 | |
45 <command id="clear-all-command" shortcut="Alt-U+0043"><!-- Alt+C --> | 13 <command id="clear-all-command" shortcut="Alt-U+0043"><!-- Alt+C --> |
46 <if expr="is_macosx"> | 14 <if expr="is_macosx"> |
47 <command id="undo-command" shortcut="Meta-U+005A"><!-- Command+Z --> | 15 <command id="undo-command" shortcut="Meta-U+005A"><!-- Command+Z --> |
48 </if> | 16 </if> |
49 <if expr="not is_macosx"> | 17 <if expr="not is_macosx"> |
50 <command id="undo-command" shortcut="Ctrl-U+005A"><!-- Ctrl+Z --> | 18 <command id="undo-command" shortcut="Ctrl-U+005A"><!-- Ctrl+Z --> |
51 </if> | 19 </if> |
52 | |
53 <link rel="import" href="chrome://resources/html/load_time_data.html"> | 20 <link rel="import" href="chrome://resources/html/load_time_data.html"> |
54 <link rel="import" href="chrome://downloads/strings.html"> | 21 <link rel="import" href="chrome://downloads/strings.html"> |
55 <link rel="import" href="chrome://resources/html/i18n_template.html"></script> | 22 <link rel="import" href="chrome://resources/html/i18n_template.html"> |
56 | |
57 </body> | 23 </body> |
58 </html> | 24 </html> |
OLD | NEW |