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

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

Issue 1899043003: MD Downloads/History: unify page and toolbar background colors (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: the colors, duke, the colors! Created 4 years, 8 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/text_defaults_md.css"> 6 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
7 <link rel="stylesheet" href="chrome://resources/css/md_colors.css">
7 <style> 8 <style>
8 html { 9 html {
9 background: rgb(236, 239, 241); 10 background: var(--md-background-color);
10 } 11 }
11 12
12 html, 13 html,
13 body { 14 body {
14 height: 100%; 15 height: 100%;
15 } 16 }
16 17
17 body { 18 body {
18 display: flex; 19 display: flex;
19 margin: 0; 20 margin: 0;
(...skipping 14 matching lines...) Expand all
34 <link rel="import" href="chrome://resources/html/polymer.html"> 35 <link rel="import" href="chrome://resources/html/polymer.html">
35 <link rel="import" href="chrome://downloads/i18n_setup.html"> 36 <link rel="import" href="chrome://downloads/i18n_setup.html">
36 <link rel="import" href="chrome://downloads/manager.html"> 37 <link rel="import" href="chrome://downloads/manager.html">
37 <!-- i18n_template.html actually does i18n-* attribute substitutions. 38 <!-- i18n_template.html actually does i18n-* attribute substitutions.
38 It should be imported last and only once. TODO(dbeam): figure out a good 39 It should be imported last and only once. TODO(dbeam): figure out a good
39 solution for each individual element to do this as well. --> 40 solution for each individual element to do this as well. -->
40 <link rel="import" href="chrome://resources/html/i18n_template.html"> 41 <link rel="import" href="chrome://resources/html/i18n_template.html">
41 <script src="chrome://downloads/downloads.js"></script> 42 <script src="chrome://downloads/downloads.js"></script>
42 </body> 43 </body>
43 </html> 44 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_downloads/crisper.js ('k') | chrome/browser/resources/md_downloads/manager.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698