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

Side by Side Diff: chrome/browser/resources/md_history/history.html

Issue 1840043003: Update Material Design History colors. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « no previous file | chrome/browser/resources/md_history/history_toolbar.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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="utf8"> 4 <meta charset="utf8">
5 <title>$i18n{title}</title> 5 <title>$i18n{title}</title>
6 6
7 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> 7 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
8 8
9 <style> 9 <style>
10 html, 10 html,
11 body { 11 body {
12 height: 100%; 12 height: 100%;
13 margin: 0; 13 margin: 0;
14 } 14 }
15 15
16 body { 16 body {
17 background: #f2f2f2; 17 background: rgb(236, 239, 241);
Dan Beam 2016/03/30 01:47:33 if you wanted to be super duper awesome, you could
calamity 2016/03/31 03:57:37 Hmm. How? Do we have native CSS custom property su
Dan Beam 2016/03/31 04:30:21 i trust you'll figure it out: https://code.google.
18 display: flex; 18 display: flex;
19 flex-direction: column; 19 flex-direction: column;
20 min-width: 800px; 20 min-width: 800px;
21 } 21 }
22 22
23 #toolbar { 23 #toolbar {
24 flex: 0 0 56px; 24 flex: 0 0 56px;
25 } 25 }
26 26
27 #history-list { 27 #history-list {
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 66
67 <!-- 67 <!--
68 Prepare strings and perform i18n substitutions. 68 Prepare strings and perform i18n substitutions.
69 TODO(tsergeant): Remove once we are fully converted to 69 TODO(tsergeant): Remove once we are fully converted to
70 ReplaceTemplateExpressions. It is currently only used for the <html> tag. 70 ReplaceTemplateExpressions. It is currently only used for the <html> tag.
71 --> 71 -->
72 <link rel="import" href="chrome://resources/html/i18n_template.html"> 72 <link rel="import" href="chrome://resources/html/i18n_template.html">
73 </body> 73 </body>
74 74
75 </html> 75 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/md_history/history_toolbar.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698