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

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

Issue 1758913004: MD History/Downloads: use MD-specific text defaults (like other MD UIs) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@dschuyler-patch
Patch Set: Created 4 years, 9 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> 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 <link rel="stylesheet" href="chrome://resources/css/roboto.css"> 6 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
7 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
8 <style> 7 <style>
9 html { 8 html {
10 background: rgb(236, 239, 241); 9 background: rgb(236, 239, 241);
11 } 10 }
12 11
13 html, 12 html,
14 body { 13 body {
15 height: 100%; 14 height: 100%;
16 } 15 }
17 16
18 body { 17 body {
19 display: flex; 18 display: flex;
20 font-family: Roboto;
21 font-size: 81.25%;
22 margin: 0; 19 margin: 0;
23 } 20 }
24 </style> 21 </style>
25 </head> 22 </head>
26 <body> 23 <body>
27 <downloads-manager></downloads-manager> 24 <downloads-manager></downloads-manager>
28 <command id="clear-all-command" shortcut="Alt-U+0043"><!-- Alt+C --> 25 <command id="clear-all-command" shortcut="Alt-U+0043"><!-- Alt+C -->
29 <if expr="is_macosx"> 26 <if expr="is_macosx">
30 <command id="undo-command" shortcut="Meta-U+005A"><!-- Command+Z --> 27 <command id="undo-command" shortcut="Meta-U+005A"><!-- Command+Z -->
31 <command id="find-command" shortcut="Meta-U+0046"><!-- Command+F --> 28 <command id="find-command" shortcut="Meta-U+0046"><!-- Command+F -->
32 </if> 29 </if>
33 <if expr="not is_macosx"> 30 <if expr="not is_macosx">
34 <command id="undo-command" shortcut="Ctrl-U+005A"><!-- Ctrl+Z --> 31 <command id="undo-command" shortcut="Ctrl-U+005A"><!-- Ctrl+Z -->
35 <command id="find-command" shortcut="Ctrl-U+0046"><!-- Ctrl+F --> 32 <command id="find-command" shortcut="Ctrl-U+0046"><!-- Ctrl+F -->
36 </if> 33 </if>
37 <link rel="import" href="chrome://resources/html/polymer_config.html"> 34 <link rel="import" href="chrome://resources/html/polymer_config.html">
38 <link rel="import" href="chrome://downloads/i18n_setup.html"> 35 <link rel="import" href="chrome://downloads/i18n_setup.html">
39 <link rel="import" href="chrome://downloads/manager.html"> 36 <link rel="import" href="chrome://downloads/manager.html">
40 <!-- i18n_template.html actually does i18n-* attribute substitutions. 37 <!-- i18n_template.html actually does i18n-* attribute substitutions.
41 It should be imported last and only once. TODO(dbeam): figure out a good 38 It should be imported last and only once. TODO(dbeam): figure out a good
42 solution for each individual element to do this as well. --> 39 solution for each individual element to do this as well. -->
43 <link rel="import" href="chrome://resources/html/i18n_template.html"> 40 <link rel="import" href="chrome://resources/html/i18n_template.html">
44 <script src="chrome://downloads/downloads.js"></script> 41 <script src="chrome://downloads/downloads.js"></script>
45 </body> 42 </body>
46 </html> 43 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698