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

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

Issue 2549133003: [MD History] Color tweaks. (Closed)
Patch Set: address comments Created 4 years 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 dir="$i18n{textdirection}" lang="$i18n{language}"> 2 <html dir="$i18n{textdirection}" lang="$i18n{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 <link rel="stylesheet" href="chrome://resources/css/md_colors.css"> 8 <link rel="stylesheet" href="chrome://resources/css/md_colors.css">
9 9
10 <style> 10 <style>
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 #loading-toolbar { 46 #loading-toolbar {
47 -webkit-padding-start: 24px; 47 -webkit-padding-start: 24px;
48 align-items: center; 48 align-items: center;
49 background: var(--md-toolbar-color); 49 background: var(--md-toolbar-color);
50 color: #fff; 50 color: #fff;
51 height: 56px; 51 height: 56px;
52 } 52 }
53 53
54 #loading-message { 54 #loading-message {
55 align-items: center; 55 align-items: center;
56 color: #b4b4b4; 56 color: var(--md-loading-message-color);
57 flex: 1; 57 flex: 1;
58 font-weight: 500; 58 font-weight: 500;
59 justify-content: center; 59 justify-content: center;
60 } 60 }
61 </style> 61 </style>
62 </head> 62 </head>
63 63
64 <body class="loading"> 64 <body class="loading">
65 <history-app id="history-app"></history-app> 65 <history-app id="history-app"></history-app>
66 66
(...skipping 15 matching lines...) Expand all
82 <link rel="import" href="chrome://resources/html/util.html"> 82 <link rel="import" href="chrome://resources/html/util.html">
83 <link rel="import" href="chrome://resources/html/load_time_data.html"> 83 <link rel="import" href="chrome://resources/html/load_time_data.html">
84 <link rel="import" href="chrome://history/constants.html"> 84 <link rel="import" href="chrome://history/constants.html">
85 <script src="chrome://history/strings.js"></script> 85 <script src="chrome://history/strings.js"></script>
86 <script src="chrome://history/history.js"></script> 86 <script src="chrome://history/history.js"></script>
87 87
88 <link rel="import" href="chrome://history/app.html" async id="bundle"> 88 <link rel="import" href="chrome://history/app.html" async id="bundle">
89 </body> 89 </body>
90 90
91 </html> 91 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698